diff options
author | Jasper Van der Jeugt | 2020-07-29 16:33:53 +0200 |
---|---|---|
committer | Jasper Van der Jeugt | 2020-07-29 16:33:53 +0200 |
commit | d6265dd7f44538858989c1fe6837e1cafc489455 (patch) | |
tree | e2f909606b57a8e2e745fcae6453bf99928762a9 /client/index.html | |
parent | 780527946548c68bfcfc4d8a99abf06b66cf23c1 (diff) |
Further client stub
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html index 8ac103a..3803738 100644 --- a/client/index.html +++ b/client/index.html @@ -5,5 +5,10 @@ <title>Client</title> </head> <body> + <div id="main"></div> + <script type="text/JavaScript" src="/assets/client.js"></script> + <script> + var app = Elm.Client.init({node: document.querySelector("main")}); + </script> </body> </html> |