-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 1.15 KB
/
index.html
File metadata and controls
58 lines (57 loc) · 1.15 KB
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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<!-- <html>
<head>
<meta charset="utf-8">
<title>Hello Forward!!!</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
< for reference: https://github.com/reactjscamp/forwardjs2 >
<div id="react"></div>
<script src="bundle.js" type="text/javascript"></script>
</body>
</html> -->
<head>
<script src="./node_modules/react"></script>
<script src="./node_modules/react-dom"></script>
<style>
body {
text-align: center;
}
.row {
display: flex;
justify-content: center;
margin-bottom: 3px;
}
.cell {
width: 100px;
height: 100px;
cursor: pointer;
display: inline-block;
border: 1px solid #aaa;
background: #f8f8f8;
margin-right: 4px;
}
.active {
background-color: #058BDA;
}
.guess-true {
background-color: #00CC00;
cursor: default;
}
.guess-false {
background-color: #CC0000;
cursor: default;
}
.footer {
font-size: 2.5em;
}
</style>
</head>
<body>
<div id="react">
Loading...
</div>
<script src="bundle.js"></script>
</body>
</html>