Skip to content

Instantly share code, notes, and snippets.

@alexandrzavalii
Last active March 24, 2019 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexandrzavalii/dce571e7bd49a5aeb0b4921195884de3 to your computer and use it in GitHub Desktop.
Save alexandrzavalii/dce571e7bd49a5aeb0b4921195884de3 to your computer and use it in GitHub Desktop.
// JSX
const Dumbo = props => {
return <div>Hey, my name is Dumbo.</div>;
};
// without JSX
const Dumbo = props => {
return React.createElement("div", null, `Hey, my name is Dumbo.`);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment