mirror of
https://github.com/Priler/jarvis.git
synced 2026-05-30 00:49:43 +00:00
19 lines
466 B
Svelte
19 lines
466 B
Svelte
<!-- src/App.svelte -->
|
|
<script>
|
|
import { Router } from "@roxi/routify";
|
|
import routes from "../.routify/routes.default.js";
|
|
|
|
import { SvelteUIProvider } from '@svelteuidev/core';
|
|
|
|
import Events from "./Events.svelte";
|
|
|
|
/** START LISTENING **/
|
|
// import { startListening } from "./functions";
|
|
// startListening();
|
|
</script>
|
|
|
|
<SvelteUIProvider themeObserver='dark' withNormalizeCSS withGlobalStyles>
|
|
<Router {routes} />
|
|
</SvelteUIProvider>
|
|
|
|
<Events /> |