From 8821563c3ed8a018db3fe44c8efb7f627ad328df Mon Sep 17 00:00:00 2001 From: NCarteazy Date: Tue, 24 Oct 2017 10:25:11 -0700 Subject: [PATCH] Link for "the key attribute" corrected The link redirected to the incorrect page, changed to point to 'key attribute' page. --- content/docs/addons-animation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/addons-animation.md b/content/docs/addons-animation.md index 757524ca..40c110ac 100644 --- a/content/docs/addons-animation.md +++ b/content/docs/addons-animation.md @@ -72,7 +72,7 @@ class TodoList extends React.Component { > Note: > -> You must provide [the `key` attribute](/docs/multiple-components.html#dynamic-children) for all children of `ReactCSSTransitionGroup`, even when only rendering a single item. This is how React will determine which children have entered, left, or stayed. +> You must provide [the `key` attribute](/docs/lists-and-keys.html#keys) for all children of `ReactCSSTransitionGroup`, even when only rendering a single item. This is how React will determine which children have entered, left, or stayed. In this component, when a new item is added to `ReactCSSTransitionGroup` it will get the `example-enter` CSS class and the `example-enter-active` CSS class added in the next tick. This is a convention based on the `transitionName` prop.