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