Skip to content

Instantly share code, notes, and snippets.

@tivac
Created April 11, 2017 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tivac/f878657525fca50ba4959cdc764cbc53 to your computer and use it in GitHub Desktop.
Save tivac/f878657525fca50ba4959cdc764cbc53 to your computer and use it in GitHub Desktop.
Simple Mithril Example
var root = document.body
m.render(root, [
m("main", [
m("h1", {class: "title"}, "My first app"),
m("button", "A button"),
])
])
<script src="https://unpkg.com/mithril"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment