Created
January 26, 2021 02:06
-
-
Save douglasabnovato/4c531561c34c1af325f1bf027d3af586 to your computer and use it in GitHub Desktop.
no componente de Post podemos acessar essa propriedade acessando a variável this.props
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
| //components/Post.js | |
| import React from ‘react’; | |
| class Post extends React.Component { | |
| render() { | |
| return <h1>{this.props.title}</h1> | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment