Add basic game session support with WebSockets and dummy CSS.

This commit is contained in:
2018-05-25 13:48:01 -07:00
parent 00d5d19407
commit ff68f44d88
3 changed files with 132 additions and 9 deletions

View File

@@ -1,5 +1,18 @@
<html>
<head>
<style>
.board-cell {
display: inline-block;
background-color: #eaeaea;
padding: 20px;
}
.black-cell {
background-color: black;
}
.board {
max-width: 360px;
}
</style>
</head>
<body>
<div id="elm-root"></div>