chore: move App and app related code to app layer

This commit is contained in:
Ilia Mashkov
2026-01-02 16:09:03 +03:00
parent 11014f36af
commit c65243ed02
7 changed files with 42 additions and 24 deletions

View File

@@ -1,5 +1,6 @@
import App from '$app/App.svelte';
import { mount } from 'svelte';
import App from './App.svelte';
import '$app/styles/app.css';
mount(App, {
target: document.getElementById('app')!,