Skip to content

Instantly share code, notes, and snippets.

@DiegoPinho
Created May 10, 2018 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DiegoPinho/7db2b9b7a53351a0943dedc2c90d6f1d to your computer and use it in GitHub Desktop.
Save DiegoPinho/7db2b9b7a53351a0943dedc2c90d6f1d to your computer and use it in GitHub Desktop.
Exemplo de componente com propriedades - UNIVEM
const App = () => {
return (
<Pessoa nome = "Diego Martins de Pinho" />
)
}
const Pessoa = (props) => {
return (
<p><b>Nome: </b>{props.nome}</p>
)
}
ReactDOM.render(<App />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment