Task #3
Build a component which renders a list of profiles
Use your previously created
<Card />
componentCreate a new stateful
<CardList />
componentStore the array of profiles in state
[
{
id: 1,
name: 'Jane React',
description: 'Coolest person alive'
},
...
]
Bonus task
Add a counter that lists the amount of people in the list
Last updated
Was this helpful?