Created
July 20, 2019 19:08
-
-
Save ralexrdz/15e6785fae018e4cf3dc22d6c3965d8f to your computer and use it in GitHub Desktop.
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
Forum App | |
Componentes: | |
- ListaPost | |
- TextArea | |
- Botón Agregar | |
- Posts | |
- Post | |
- Parrafo | |
- TextArea para Comments | |
- Botón Comentar | |
- Comments | |
- Comment | |
- Parrafo | |
dentro de App.js | |
en | |
render () { | |
let dummyPosts = [ | |
{ | |
text: 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, iste.' | |
comments: ['Hola', 'Adios'] | |
}, | |
{ | |
text: 'amet consectetur adipisicing elit. Voluptate, iste.' | |
comments: ['Hola', 'Adios'] | |
} | |
] | |
return <ListaPosts posts={dummyPosts} /> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment