Skip to content

Commit 6f0dfce

Browse files
committed
fix link to reconciliation docs
1 parent 485f149 commit 6f0dfce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/lists-and-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const todoItems = todos.map((todo, index) =>
130130
);
131131
```
132132

133-
We don't recommend using indexes for keys if the items can reorder as that would impact performance, and may cause issues with the reordering of components and their respective states. If you choose not to assign a key to your list items then React will use indexes as keys. You may read an [in-depth explanation about why keys are necessary](/react/docs/reconciliation.html#recursing-on-children) if you're interested in more information.
133+
We don't recommend using indexes for keys if the items can reorder as that would impact performance, and may cause issues with the reordering of components and their respective states. If you choose not to assign a key to your list items then React will use indexes as keys. You may read an [in-depth explanation about why keys are necessary](/docs/reconciliation.html#recursing-on-children) if you're interested in more information.
134134

135135
### Extracting Components with Keys
136136

0 commit comments

Comments
 (0)