Created
January 26, 2021 02:04
-
-
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
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
| 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