Last active
November 29, 2016 12:43
-
-
Save aamnah/07522e9ffe43c9d118437c9e401d7e0d to your computer and use it in GitHub Desktop.
React Pure Component function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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