cryptgeon/frontend/src/routes/index.svelte

10 lines
166 B
Svelte
Raw Normal View History

2021-05-02 03:08:30 +02:00
<script context="module" lang="ts">
2021-05-02 12:31:32 +02:00
export const prerender = true
2021-05-02 03:08:30 +02:00
</script>
<script lang="ts">
2021-05-02 12:31:32 +02:00
import Create from '$lib/views/Create.svelte'
2021-05-02 03:08:30 +02:00
</script>
<Create />