Files
obsidian-livesync/src/apps/webpeer/src/main.ts
2026-01-26 09:17:01 +00:00

10 lines
180 B
TypeScript

import { mount } from "svelte";
import "./app.css";
import App from "./App.svelte";
const app = mount(App, {
target: document.getElementById("app")!,
});
export default app;