matthewrobb
11/4/2018 - 5:16 PM

Mithril + Mobx Mithril + Mobx // source https://jsbin.com/jesebuv

Mithril + Mobx

Mithril + Mobx

// source https://jsbin.com/jesebuv

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Mithril + Mobx">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Mithril + Mobx</title>
  <script src="https://unpkg.com/mithril/mithril.js"></script>
</head>
<body>

<script id="jsbin-javascript">
/** @jsx m */

"use strict";

m.render(document.body, m(
  "pre",
  null,
  "hola"
));
</script>



<script id="jsbin-source-javascript" type="text/javascript">/** @jsx m */

m.render(document.body, <pre>hola</pre>);</script></body>
</html>
/** @jsx m */

"use strict";

m.render(document.body, m(
  "pre",
  null,
  "hola"
));