gr-base/platform/loom/editor/src/main.ts

10 lines
173 B
TypeScript
Raw Normal View History

2025-10-05 16:13:03 +07:00
import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
const app = mount(App, {
target: document.getElementById('app')!,
})
export default app