Skip to content

Instantly share code, notes, and snippets.

@tivac
Created April 12, 2017 16:33
Show Gist options
  • Save tivac/6f9d365bffdf458c306330cbd2e60797 to your computer and use it in GitHub Desktop.
Save tivac/6f9d365bffdf458c306330cbd2e60797 to your computer and use it in GitHub Desktop.
null created by tivac - https://repl.it/HHFC/2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mithril</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
Hello
<script src="index.js"></script>
</body>
</html>
var m = require('mithril');
m.mount(document.body, {
view() {
return m("div", "Hello, repl.it");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment