piclets / src /main.ts
Fraser's picture
MORE
7428b13
raw
history blame contribute delete
245 Bytes
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