Create virtual dom elements FP-style!
npm install fd-velem --save
import velem from 'fd-velem';
var div = velem('div')({})(['Hello World']);
velem :: (tagName, content)
tagName -> string: type of element to be created.
content -> string: Contents of the newly created element.