aotds-docks/src/routes/index.svelte

13 lines
231 B
Svelte
Raw Permalink Normal View History

2021-05-17 13:48:31 +00:00
<App />
<script>
2022-03-15 14:59:33 +00:00
import { setContext } from "svelte";
2022-03-20 18:42:59 +00:00
import '$lib/style/index.js';
2022-03-15 14:59:33 +00:00
import shipStore from "$lib/store/ship.js";
2021-05-17 13:48:31 +00:00
2022-02-28 20:11:21 +00:00
import App from "$lib/components/App.svelte";
2022-03-15 14:59:33 +00:00
setContext("ship", shipStore());
</script>