Skip to content

Instantly share code, notes, and snippets.

@jongacnik
Created May 5, 2017 20:37
Show Gist options
  • Save jongacnik/a8507a237a91c0372789650e6a8d35ec to your computer and use it in GitHub Desktop.
Save jongacnik/a8507a237a91c0372789650e6a8d35ec to your computer and use it in GitHub Desktop.
choo-so-basic
var html = require('choo/html')
var choo = require('choo')
var app = choo()
app.route(mainView)
app.mount('body')
function mainView () {
return html`<body>hello world</body>`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment