forked from jphillipsCrestron/ch5-react-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 785 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Casa BZ</title>
<style>
* {
pointer-events:visible;
}
.ant-tabs-nav-operations {
display: none !important;
}
</style>
</head>
<body>
<!-- <ch5-video url="https://cdn.flowplayer.com/a30bd6bc-f98b-47bc-abf5-97633d4faea0/hls/de3f6ca7-2db3-4689-8160-0f574a5996ad/playlist.m3u8"></ch5-video> -->
<!-- Import the XPanel first -->
<script src="./index.js"></script>
<!-- Import CrComLib second -->
<script src="./cr-com-lib.js"></script>
<!-- Rest of the project -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>