| <!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> |
| <!-- Import the bundled JavaScript file created by Webpack --> |
| <script type="text/javascript" src="dist/chess-app.js"></script> |
| </html> |