Files
obsidian-livesync/src/apps/webpeer/src/check.ts
T

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;