Skip to content

Instantly share code, notes, and snippets.

@jhurtadojerves
Created July 16, 2018 21:48
Show Gist options
  • Save jhurtadojerves/8b0fa8440df1d3de46803995ca358faf to your computer and use it in GitHub Desktop.
Save jhurtadojerves/8b0fa8440df1d3de46803995ca358faf to your computer and use it in GitHub Desktop.
// 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