Created
September 8, 2018 07:57
-
-
Save zacck-zz/d9bf2d7a976ac069f141a7512b196373 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
require('./index.html'); | |
require('./style.css'); | |
var Elm = require('./Main.elm'); | |
Elm.Main.embed(document.getElementById('main')); | |
/// index.html | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Menanawe</title> | |
</head> | |
<body> | |
<div id="main"> Loading Awesome Experiences</div> | |
<script src="main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment