When would we want to create a list of React components?
When you have data that updates periodically
Why is it important for React components to be data-driven?
so the only thing that changes is the needed field.
Where in the component code would a list of React components typically be built?
inside the function body
What Array method is commonly used to create a list of React components?
.map()
Why do components in a list need to have unique keys?
to help match later if the list needs to be dynamic
What is the best value to use as a “key” prop when rendering lists?
The ID in the DB table