9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
import App from './App.svelte';
|
|
|
|
const app = new App({
|
|
target: document.getElementById("svelte-root")!,
|
|
props: {
|
|
}
|
|
});
|
|
|
|
export default app;
|