mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import { mount } from "svelte";
|
|
import App from "./App.svelte";
|
|
// import App from "../todo-list.svelte";
|
|
|
|
const root = document.body.appendChild(document.createElement("div"));
|
|
mount(App, { target: root });
|