Skip to content

Instantly share code, notes, and snippets.

@aamnah
Last active November 29, 2016 12:43
Show Gist options
  • Select an option

  • Save aamnah/07522e9ffe43c9d118437c9e401d7e0d to your computer and use it in GitHub Desktop.

Select an option

Save aamnah/07522e9ffe43c9d118437c9e401d7e0d to your computer and use it in GitHub Desktop.
React Pure Component function
const App = (props) => {
return (
// code goes here
<div>
<p>My name is {props.name}. I am {props.age} years old.</p>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment