Can attributes be added to SVG nodes using virtual-hyperscript in a virtual dom? Like this:
var h = require('virtual-dom/h')
h('svg', [
h('circle', {cx: 100, cy: 100}, 'some text')
])
I attempted this but the attributes are stripped out during create
.