mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-28 20:08:35 +00:00
10 lines
180 B
TypeScript
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;
|