mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-12-16 16:50:44 +01:00
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import { mount } from 'svelte';
|
|
import App from './App.svelte';
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app')!
|
|
});
|
|
|
|
export default app;
|