Task #3

Build a component which renders a list of profiles

  • Use your previously created <Card /> component

  • Create a new stateful <CardList /> component

  • Store 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