Files
bun.sh/test/integration/svelte/fixtures/app/index.ts

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 });