mirror of
https://github.com/shadoll/vancouver.git
synced 2026-08-28 03:28:21 +00:00
10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
import { mount } from 'svelte'
|
|
import './app.css'
|
|
import App from './App.svelte'
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app'),
|
|
})
|
|
|
|
export default app
|