Created
July 16, 2018 21:48
-
-
Save jhurtadojerves/8b0fa8440df1d3de46803995ca358faf to your computer and use it in GitHub Desktop.
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
// Clasic Function | |
function MyComponent(props) { | |
return( | |
<div> | |
<h1>Titlte</h1> | |
<p>Mi first component</p> | |
</div> | |
) | |
} | |
//Arrow Function | |
const MyComponent => props { | |
<div> | |
<h1>Titlte</h1> | |
<p>Mi first component</p> | |
</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment