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