Skip to content

Instantly share code, notes, and snippets.

@jbardon
Last active February 15, 2018 15:01
Show Gist options
  • Save jbardon/cf58603d758c443e81b177958faa451c to your computer and use it in GitHub Desktop.
Save jbardon/cf58603d758c443e81b177958faa451c to your computer and use it in GitHub Desktop.
// React.createElement naive implementation (using ES6 features)
function createElement(type, props, ...children) {
return { type, props, children };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment