import { mount } from 'svelte' import './app.css' import App from './App.svelte' import './lib/db/resetGame' // Import to make reset functions available const app = mount(App, { target: document.getElementById('app')!, }) export default app