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