diff options
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..e60cebf --- /dev/null +++ b/src/main.ts | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | import { mount } from 'svelte' | ||
| 2 | import './app.css' | ||
| 3 | import App from './App.svelte' | ||
| 4 | |||
| 5 | const app = mount(App, { | ||
| 6 | target: document.getElementById('app')!, | ||
| 7 | }) | ||
| 8 | |||
| 9 | export default app | ||
