fix(project): Minor fixes and cleanup

This commit is contained in:
2025-01-29 17:56:21 +01:00
parent a039a58f8e
commit b90234e226
13 changed files with 44 additions and 23 deletions

View File

@ -1,3 +1 @@
{
"peek-readable": "5.3.1"
}
{}

View File

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

View File

@ -0,0 +1,5 @@
import { html } from "@design.estate/dees-element";
export const page1 = () => html`
<first-element></first-element>
`;

View File

@ -0,0 +1,5 @@
import { html } from "@design.estate/dees-element";
export const page2 = () => html`
<first-element></first-element>
`;