swaf/src/assets/views/home.svelte

11 lines
231 B
Svelte
Raw Normal View History

2021-06-01 16:14:24 +02:00
<script lang="ts">
import AllTests from "./AllTests.svelte";
import BaseLayout from "./layouts/BaseLayout.svelte";
let test: string = 'testing';
</script>
<BaseLayout title="Home tests">
<AllTests/>
</BaseLayout>