-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact.html
More file actions
34 lines (31 loc) · 1.22 KB
/
react.html
File metadata and controls
34 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<!--<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>-->
<script src="https://fb.me/react-15.1.0.min.js"></script>
<script src="https://fb.me/react-dom-15.1.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.10.3/babel.min.js"></script>
<?!= include('bootstrap'); ?>
<?!= include('css'); ?>
</head>
<body>
<div style="width:100%; background-color: black; height: 100px; margin: -20px 0 60px 0; padding-top: 20px; overflow: auto;">
<h1 class="text-center">ReactJS Game of Life <a href="https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" target="_blank">(Learn More)</a></h1>
</div>
<div id="life"></div>
<div id="chat">
<h3>CHAT</h3>
<div id="log">
testing 567
</div>
<form method="POST">
<input type="text" name="message" />
<input type="submit" value="Submit" />
</form>
</div>
<?!= include('react_clientjs'); ?>
</body>
</html>