feat(pages): Add initial structure for pages with page1 component

This commit is contained in:
2025-01-13 22:21:14 +01:00
parent 7fa31e0496
commit 1c558f3aa1
5 changed files with 12 additions and 3 deletions

1
ts_web/pages/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './page1.js';

3
ts_web/pages/page1.ts Normal file
View File

@ -0,0 +1,3 @@
import { html } from 'lit';
export const page1 = () => html``;