Why do we need a React List Key

 by Robin Wieruch
 - Edit this Post

Everyone dealing with React knows about this warning: Warning: Each child in a list should have a unique "key" prop. It shows up in your development tools of your browser and it's one of the warnings you encounter very early in your React career. The following results in this warning:

const list = ['Learn React', 'Learn GraphQL'];
const ListWithoutKey = () => (
<div>
<ul>
{list.map((item) => (
<li>{item}</li>
))}
</ul>
</div>
);

The warning says we only need to add a key attribute to each of our list item elements. Since we are using the , we have access to the index of each rendered item in the list. That should do the trick, shouldn't it?

const ListWithoutKey = () => (
<div>
<ul>
{list.map((item, index) => (
<li key={index}>{item}</li>
))}
</ul>
</div>
);

Indeed, the warning disappears and we should be alright for now. But careful: Using the index of an array item isn't the best practice solution here. React asks for the key not without any reason. Behind the scenes, React uses the key attribute to associate the rendered element with its place in the rendered list. Basically it's the identifier for the item element in the list element.

For instance, the solution with the index would fail in the case of reordering the list, because the index would stay the same but the real item has changed its place. If we would reverse our array, the 'Learn React' entry would have the index 2 and the 'Learn GraphQL' entry would have the index 1. That doesn't match anymore with the actual rendered items which causes problems.

When I searched online about this problem, it was difficult to find a real world scenario that illustrates it. Most tutorials only explain how to fix the issue, but not what could happen in the worst case. That's why I came up with the following example which is perfect for a brief walkthrough to show the issue:

const initialList = ['Learn React', 'Learn GraphQL'];
const ListWithUnstableIndex = () => {
const [list, setList] = React.useState(initialList);
const handleClick = event => {
setList(list.slice().reverse());
};
return (
<div>
<ul>
{list.map((item, index) => (
<li key={index}>
<label>
{item}
</label>
</li>
))}
</ul>
<button type="button" onClick={handleClick}>
Reverse List
</button>
</div>
);
};

The example showcases the same list, but this time managed with as . The new button element reverses our list and stores it as state. If you try the example, everything works and seems alright. The bug stays hidden because we don't render much here. However, if we add another uncontrolled element to our rendered list items, we can see the bug happening:

const initialList = ['Learn React', 'Learn GraphQL'];
const ListWithUnstableIndex = () => {
const [list, setList] = React.useState(initialList);
const handleClick = event => {
setList(list.slice().reverse());
};
return (
<div>
<ul>
{list.map((item, index) => (
<li key={index}>
<label>
<input type="checkbox" />
{item}
</label>
</li>
))}
</ul>
<button type="button" onClick={handleClick}>
Reverse List
</button>
</div>
);
};

The checkbox -- since it's an for the sake of demonstrating what's happening here -- manages its own internal state. If you check the first of the two items with the checkbox, and reverse them with the button, you will notice that the checked checkbox is rendered at the same place while the order of the list items have changed.

// the initially rendered list of items
[x] Learn React
[ ] Learn GraphQL
// becomes this after the reverse button click
[x] Learn GraphQL
[ ] Learn React

Now the flaw -- which wasn't obvious before -- got unveiled in our browser in front of our eyes. The problem is that we are using the index of each item in an array for the key attribute. But for each rendering the index stays the same even though we reverse our list:

// the initially rendered list of items
[x] Learn React (index = 1)
[ ] Learn GraphQL (index = 2)
// becomes this after the reverse button click
[x] Learn GraphQL (index = 1)
[ ] Learn React (index = 2)

That's why the reordered elements get still assigned to the same key attribute which acts as identifier for React. React doesn't change the checkbox elements, because it believes the rendered items still have the same order. You can fix this issue by using stable identifiers for your rendered list items:

const initialList = [
{ id: 'a', name: 'Learn React' },
{ id: 'b', name: 'Learn GraphQL' },
];
const ListWithStableIndex = () => {
const [list, setList] = React.useState(initialList);
const handleClick = event => {
setList(list.slice().reverse());
};
return (
<div>
<ul>
{list.map(item => (
<li key={item.id}>
<label>
<input type="checkbox" />
{item.name}
</label>
</li>
))}
</ul>
<button type="button" onClick={handleClick}>
Reverse List
</button>
</div>
);
};

Now with every reorder of the list, the key property stays intact because the id is attached to the actual item in the list:

// the initially rendered list of items
[x] Learn React (id = a)
[ ] Learn GraphQL (id = b)
// becomes this after the reverse button click
[ ] Learn GraphQL (id = b)
[x] Learn React (id = a)

That's all it needs to render lists without any bugs in React. In this case we used a made up identifier, but it would have worked with the name property of each item as key as well; as long as they are unique names which cannot be changed.

Anyway, it's still worth to note that using indexes is fine as long your list keeps isn't changed in order or size. Then the place of each item in the list doesn't change -- it's stable same as the index -- and thus using the index is okay. The demonstrated example can be found in this GitHub repository among other React List Component examples.

Keep reading about 

If you are new to React, most likely you want to know how to display a list of items in React's JSX syntax. This tutorial for List components in React gives you a step by step walkthrough on how to…

A brief tutorial which shows you two use cases on how to scroll to an item within a list of items in a React List Component . We will use the native browser API to scroll to our React element with…

The Road to React

Learn React by building real world applications. No setup configuration. No tooling. Plain React in 200+ pages of learning material. Learn React like 50.000+ readers.

Get it on Amazon.