UNPKG

mithril-query

Version:

Query mithril virtual dom for testing purposes

12 lines (10 loc) 207 B
const m = require('mithril') module.exports = { view: function() { return m('div', [ m('span', 'spanContent'), m('#fooId', 'fooContent'), m('.barClass', 'barContent'), ]) }, }