add day 26

This commit is contained in:
Zoe
2022-10-18 23:06:15 -05:00
parent ed55d7c9a2
commit e017cbf418
76 changed files with 19362 additions and 0 deletions

View File

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