Skip to content

Instantly share code, notes, and snippets.

@krcrawford
Created March 9, 2019 00:15
Show Gist options
  • Save krcrawford/32381f02e80eecd6217d7ff53ebadb68 to your computer and use it in GitHub Desktop.
Save krcrawford/32381f02e80eecd6217d7ff53ebadb68 to your computer and use it in GitHub Desktop.
VDOM - create
const createElement = (tagName, { attrs, children }) => {
const vEl = Object.create(null);
Object.assign(vEl, {
tagName,
attrs,
children,
});
return vEl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment