Example of Index as Key anti-pattern
items.map((item, index) => { | |
return (<ItemComponent key={index} item={item} />); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment