-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
21 lines (21 loc) · 934 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Chess game with N4JS and React</title>
</head>
<style>
body {font-family: sans-serif;}
</style>
<body>
<!-- The chess app is mounted as a child of this div -->
<div id="chessAppMountPoint"></div>
</body>
<!-- Import some dependencies -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/redux/4.0.1/redux.min.js"></script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/react-redux/6.0.1/react-redux.min.js"></script>
<!-- Import the bundled JavaScript file created by Webpack -->
<script type="text/javascript" src="dist/chess-app.js"></script>
</html>