blob: d46a8cf5bf77a2a9052412740d5daea8ef862c76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A website to play Mancala!" />
<title>Mancala MVC</title>
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="/_dist_/index.js"></script>
<!--
This index.html acts as a template. The div with id "root" above is where React will render our app.
To view this page, run `npm start` in the `/client` folder. Then visit localhost:3000.
Make sure to start your backend server by following the instructions in the readme.
-->
</body>
</html>
|