-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
34 lines (31 loc) · 988 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="/wasm_exec.js"></script>
<meta charset="utf-8" />
<meta name="robots" content="noindex,nofollow" />
<link rel="icon" href="/favicon.svg" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width"
/>
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>SpiceDB Playground</title>
</head>
<body>
<noscript
>JavaScript is required to run this single-page app. Sorry :/</noscript
>
<div id="root"></div>
<div id="portal"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>