-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathindex.html
33 lines (33 loc) · 903 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
<!DOCTYPE html>
<html>
<head>
<base target="_top" />
<!-- Add any external scripts and stylesheets here -->
<script
crossorigin
src="https://unpkg.com/[email protected]/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/@mui/[email protected]/umd/material-ui.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/[email protected]/dist/index.js"
></script>
<script
crossorigin
src="https://unpkg.com/@types/[email protected]/index.d.ts"
></script>
</head>
<body>
<section id="index">
<script type="module" src="./index.jsx"></script>
<!-- bundled js and css will get inlined here during build-->
</section>
</body>
</html>