aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
blob: d64a5b32913f443c05a8dcd658e81790f489f913 (plain)
1
2
3
4
5
6
7
8
import Slides from './slides.svelte'
import '@styles/tailwind.css'

const app = new Slides({
	target: document.getElementById('app'),
})

export default app