From 6f0dfce69e1a6c58c362bd4d0a420600785f3209 Mon Sep 17 00:00:00 2001 From: ajcumine Date: Tue, 10 Oct 2017 19:25:26 +0100 Subject: [PATCH] fix link to reconciliation docs --- content/docs/lists-and-keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/lists-and-keys.md b/content/docs/lists-and-keys.md index 2adad35b..42f82551 100644 --- a/content/docs/lists-and-keys.md +++ b/content/docs/lists-and-keys.md @@ -130,7 +130,7 @@ const todoItems = todos.map((todo, index) => ); ``` -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. +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. ### Extracting Components with Keys