Problem Statement
What are keys in React and why are they important?
Explanation
Keys are unique identifiers for elements in a list. They help React know which items have changed, been added, or removed, improving rendering efficiency and preventing re-rendering errors.
Code Solution
SolutionRead Only
const list = items.map(item => <li key={item.id}>{item.name}</li>);