blob: f38ce9884c1233bfc61ead13e8bc7e30c81e7590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import SharePage from "../components/SharePage.svelte";
import { RookType } from "../models/rook_type";
import { setClientType } from "../state/constant_state";
setClientType(RookType.SHARE);
const app = new SharePage({
target: document.getElementById("app"),
props: {},
});
export default app;
|