Finish initial prototype.

This commit is contained in:
2020-11-21 19:48:10 -08:00
commit 924f4c65e7
8 changed files with 384 additions and 0 deletions

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="elm.js"></script>
</head>
<body>
<div id="elm">
</div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm')
});
</script>
</body>
</html>