UNPKG
gargi-vachaknavi
Version:
latest (1.0.1)
1.0.1
A lightweight frontend framework like React written in vanilla JavaScript.
gargi-vachaknavi
/
src
/
core
/
createElement.js
10 lines
(9 loc)
•
155 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
function
createElement(
type
, props, ...children) {
return
{
type
, props: { ...props, children: children.flat(), }, }; }