rage-framework-example/apps/browser/src/main.ts

7 lines
152 B
TypeScript
Raw Normal View History

2024-10-28 10:52:55 +00:00
import { mount } from 'svelte'
import App from './app.svelte'
const app = mount(App, { target: document.getElementById('root')! })
export default app