Skip to content

Instantly share code, notes, and snippets.

@futurist
Created March 19, 2017 01:07
Show Gist options
  • Save futurist/da24df2dae59bfc3c2990d92ecebbd23 to your computer and use it in GitHub Desktop.
Save futurist/da24df2dae59bfc3c2990d92ecebbd23 to your computer and use it in GitHub Desktop.
mithril with generator
function * component(vnode){
// oninit
yield
// view
while (true){
yield m('h1', 'hello world')
// onbeforeupdate
yield
// onupdate
yield
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment