diff --git a/content/docs/lists-and-keys.md b/content/docs/lists-and-keys.md index a9c444a9..7692d5fc 100644 --- a/content/docs/lists-and-keys.md +++ b/content/docs/lists-and-keys.md @@ -138,7 +138,7 @@ Here is an [in-depth explanation about why keys are necessary](/docs/reconciliat Keys only make sense in the context of the surrounding array. -For example, if you [extract](/docs/components-and-props.html#extracting-components) a `ListItem` component, you should keep the key on the `` elements in the array rather than on the root `
  • ` element in the `ListItem` itself. +For example, if you [extract](/docs/components-and-props.html#extracting-components) a `ListItem` component, you should keep the key on the `` elements in the array rather than on the `
  • ` element in the `ListItem` itself. **Example: Incorrect Key Usage**