-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 821 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
<!DOCTYPE html>
<html>
<head>
<title>Visual JavaScript</title>
<meta charset="UTF-8" />
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script>
<link
async
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/semantic-ui@2/dist/semantic.min.css"
/>
<link rel="stylesheet" href="src/styles.css">
<script
type="text/javascript"
src="https://www.josherich.me/js/excalidraw.development.js"
></script>
</head>
<body>
<div class="container">
<div id="app"></div>
</div>
<!-- <script type="text/javascript" src="tests/index.js"></script> -->
<script type="text/javascript" src="src/index.js"></script>
</body>
</html>