Skip to content

Instantly share code, notes, and snippets.

@dnshko
Created July 31, 2020 10:40
Show Gist options
  • Save dnshko/9eed3191f1a5ab75e5bcd8a82959c988 to your computer and use it in GitHub Desktop.
Save dnshko/9eed3191f1a5ab75e5bcd8a82959c988 to your computer and use it in GitHub Desktop.
// JavaScript ES5 function
function Greeting(props) {
return <h1>{props.greeting}</h1>;
}
// JavaScript ES6 arrow function
const Greeting = (props) => {
return <h1>{props.greeting}</h1>;
}
// JavaScript ES6 arrow function
// without body and implicit return
const Greeting = (props) =>
<h1>{props.greeting}</h1>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment