chore: move App and app related code to app layer

This commit is contained in:
Ilia Mashkov
2026-01-02 16:09:03 +03:00
parent 11014f36af
commit c65243ed02
7 changed files with 42 additions and 24 deletions

8
src/app/App.svelte Normal file
View File

@@ -0,0 +1,8 @@
<script lang="ts">
import Page from '$routes/Page.svelte';
import Layout from './ui/Layout.svelte';
</script>
<Layout>
<Page />
</Layout>