add day 23

This commit is contained in:
Zoe
2022-10-16 01:07:28 -05:00
parent 4e485b421c
commit e505c78616
38 changed files with 9586 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { render } from './lib/templateRenderer';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { appState } from './main';
export function SSRPage(pageName: string) {
return render(pageName);
}