Skip to content

Instantly share code, notes, and snippets.

View c-dante's full-sized avatar
🌱
\o/

Dante c-dante

🌱
\o/
View GitHub Profile
const newNode = ({
children = [],
parent = undefined,
renderProps
}) => ({ children, parent, renderProps });
const attachChild = (parent, newChild) => {
parent.children.push(newChild);
newChild.parent = parent;
};