Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save douglasabnovato/70e138ecdc559fec8dfe9a14a3e613ca to your computer and use it in GitHub Desktop.
repassar um título para cada post através do componente de Lista e exibí-lo em tela no Post
import React from ‘react’;
import Post from ‘Post’;
class Lista extends React.Component {
render(){
return (
<Post title=”Aprendendo React”/>
<Post title=”A Rocketseat é massa !”/>
<Post title=”Não sei mais títulos.”/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment