blob: ccf508ade92f31eccbdee3c0acd0cdce1a73ee6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<meta charset="UTF-8">
<title>Main</title>
<link rel="stylesheet" href="main.css">
</link>
<script src="main.js"></script>
</head>
<body>
<div id="app"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById("app")
});
app.ports.showAlert.subscribe((message) => window.alert(message));
</script>
</body>
</html>
|