Files
frontend-svelte/src/App.svelte
2026-01-02 11:11:04 +03:00

21 lines
318 B
Svelte

<script lang="ts">
import favicon from '$shared/assets/favicon.svg';
import './app.css';
import Page from './routes/Page.svelte';
</script>
<svelte:head>
<link rel="icon" href={favicon} />
</svelte:head>
<div id="app-root">
<Page />
</div>
<style>
#app-root {
width: 100%;
height: 100vh;
}
</style>