From d1445d42ed83ecdd043f49eee402da105f2d3652 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Wed, 14 Jun 2017 13:04:04 +0100 Subject: [PATCH] Reword animation documentation deprecation (#9957) --- docs/docs/addons-animation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/addons-animation.md b/docs/docs/addons-animation.md index 840ede726c..ebf1b27a8a 100644 --- a/docs/docs/addons-animation.md +++ b/docs/docs/addons-animation.md @@ -12,7 +12,7 @@ redirect_from: > Note: > -> `ReactTransitionGroup` and `ReactCSSTransitionGroup` are both deprecated as of React v15.5.0. The recommendation is to use `TransitionGroup` and `CSSTransitionGroup` from [`react-transition-group`](https://github.com/reactjs/react-transition-group) instead. +> `ReactTransitionGroup` and `ReactCSSTransitionGroup` have been moved to the [`react-transition-group`](https://github.com/reactjs/react-transition-group/tree/v1-stable) package that is maintained by the community. Its 1.x branch is completely API-compatible with the existing addons. Please file bugs and feature requests in the [new repository](https://github.com/reactjs/react-transition-group/tree/v1-stable). The [`ReactTransitionGroup`](#low-level-api-reacttransitiongroup) add-on component is a low-level API for animation, and [`ReactCSSTransitionGroup`](#high-level-api-reactcsstransitiongroup) is an add-on component for easily implementing basic CSS animations and transitions.