mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-08-24 12:27:06 +00:00
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
import { mount } from "svelte";
|
|
import "./theme.css";
|
|
import "./app.css";
|
|
import App from "./App.svelte";
|
|
import { _activeDocument } from "@vrtmrz/livesync-commonlib/compat/common/coreEnvFunctions";
|
|
|
|
const app = mount(App, {
|
|
target: _activeDocument.getElementById("app")!,
|
|
});
|
|
|
|
export default app;
|