svelte-testing/src/routes/index.svelte

11 lines
235 B
Svelte
Raw Normal View History

2022-07-02 11:13:43 +02:00
<script>
2022-07-02 11:57:55 +02:00
import Sidebar from "../components/homepage/sidebar.svelte";
import Maincontent from "../components/maincontent.svelte";
2022-07-02 11:13:43 +02:00
</script>
2022-07-01 19:29:05 +02:00
<svelte:head>
<title>Welcome</title>
</svelte:head>
2022-07-01 22:10:08 +02:00
2022-07-02 11:13:43 +02:00
<Maincontent>
2022-07-02 11:57:55 +02:00
<Sidebar/>
2022-07-02 11:13:43 +02:00
</Maincontent>