CacheSim/index.html

15 lines
343 B
HTML
Raw Normal View History

2019-05-28 22:56:45 -07:00
<html>
<head>
<script src="/static/js/elm.js"></script>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div id="elm"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm')
});
</script>
</body>
</html>