import './styles/index.css' import App from './App.svelte' import { mount } from 'svelte' import { initRouter } from './router' initRouter() const app = mount(App, { target: document.getElementById('app') }) export default app