add day19

This commit is contained in:
Zoe
2022-10-11 22:44:20 -05:00
parent dcac066e2b
commit 252f9b3a78
35 changed files with 8956 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);
}