frontend cleanup
This commit is contained in:
parent
091a41ac33
commit
0c28304840
38 changed files with 2873 additions and 1180 deletions
19
frontend/_src/App.svelte
Normal file
19
frontend/_src/App.svelte
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!-- 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 />
|
||||
Loading…
Add table
Add a link
Reference in a new issue