Skip to content

Instantly share code, notes, and snippets.

@douglasabnovato
Created January 26, 2021 02:06
Show Gist options
  • Select an option

  • Save douglasabnovato/4c531561c34c1af325f1bf027d3af586 to your computer and use it in GitHub Desktop.

Select an option

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
//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