Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module.exports.mkVTree = function (callbacks) {
- return h("div", [
- h("span", { onclick: function () { console.log(123); } }, "hello"),
- h("strong", { onclick: function () { callbacks.onStrongClick(); } }, "world"),
- ]);
- };
Advertisement
Add Comment
Please, Sign In to add comment