Mithril + Mobx Hello World
A Pen by Ramnath Vaidyanathan on CodePen.
<div class="container" id="main"> | |
<div class="row"> | |
<div class="col-xs-12 col-md-6"> | |
<div id="app"></div> | |
</div> | |
</div> | |
</div> |
A Pen by Ramnath Vaidyanathan on CodePen.
/** @jsx m */ | |
const store = mobx.observable({ | |
userName: "Ramnath" | |
}) | |
const Hello = { | |
view(ctrl, props){ | |
return ( | |
<h2>Hello {props.store.userName}</h2> | |
) | |
} | |
} | |
mobx.autorun(() => | |
m.mount( | |
document.getElementById("app"), | |
<Hello store={store} /> | |
) | |
) | |