22 lines
380 B
HTML
22 lines
380 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Games</title>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
border: 1px solid black;
|
|
width: 40px;
|
|
height: 40px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="./dist/app.js"></script>
|
|
</body>
|
|
</html>
|