Guest User

Untitled

a guest
Sep 20th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports.mkVTree = function (callbacks) {
  2.     return h("div", [
  3.         h("span", { onclick: function () { console.log(123); } }, "hello"),
  4.         h("strong", { onclick: function () { callbacks.onStrongClick(); } }, "world"),
  5.     ]);
  6. };
Advertisement
Add Comment
Please, Sign In to add comment