add day 22

This commit is contained in:
Zoe
2022-10-14 23:13:31 -05:00
parent 651c1d87a2
commit 4e485b421c
39 changed files with 9615 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);
}