about summary refs log tree commit diff
path: root/assets/src/entries/share.ts
blob: cc2ab9c7dc1e2d3c308f37c26d92ae0eedf6b6e7 (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 "../stores/constant_state";

setClientType(RookType.SHARE);

const app = new SharePage({
    target: document.getElementById("app"),
    props: {},
});

export default app;