-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="styles.css"/>
<!-- <link-->
<!-- rel="stylesheet"-->
<!-- href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"-->
<!-- />-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.1.1/css/all.css"
/>
<script
src="https://unpkg.com/@babel/standalone/babel.min.js"
crossorigin
></script>
<title>React ATM Sim</title>
</head>
<body>
<!-- You will put your React component inside this div. -->
<div class="container">
<div id="form-box">
<div id="qc"></div>
<div id="root"></div>
</div>
</div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script
src="https://unpkg.com/react@17/umd/react.development.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"
crossorigin
></script>
<!-- Load our React component. -->
<script type="text/jsx" src="./atm-improvements.jsx"></script>
</body>
</html>