UNPKG
yagni-dom
Version:
latest (0.0.1)
0.0.1
Yet another functional library (DOM API related)
github.com/ysegorov/yagni-dom
ysegorov/yagni-dom
yagni-dom
/
src
/
h.js
10 lines
(8 loc)
•
153 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
function
h
(
tagName, attrs, props, children
) {
return
{
tagName
: tagName,
attrs
: attrs,
props
: props,
children
: children }; }