elemes/flowchart/src/main.ts

10 lines
173 B
TypeScript
Raw Normal View History

2026-05-01 09:09:45 +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