Skip to content

Instantly share code, notes, and snippets.

@douglasabnovato
Last active January 26, 2021 01:45
Show Gist options
  • Select an option

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

Select an option

Save douglasabnovato/b91013f3710beda31cc746d6aa121038 to your computer and use it in GitHub Desktop.
Como tudo no react são componentes, em qualquer outra classe do nosso projeto podemos importar nosso componente e exibí-lo dentro do método render em forma de tag
import React from ‘react’;
import Post from ‘Post’;
class Lista extends React.Component {
render(){
return (
<Post/>
<Post/>
<Post/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment