UNPKG
vedact
Version:
latest (1.0.1)
1.0.1
1.0.0
react but my own
vedact
/
src
/
createTextVNode.js
12 lines
(10 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
VEDS_TEXT
}
from
'./constants.js'
;
export
function
createTextVNode
(
text
) {
return
{
$$typeof
:
VEDS_TEXT
,
type
:
null
, text,
props
:
null
,
el
:
null
, }; }