mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
docs fixes
This commit is contained in:
@@ -94,11 +94,11 @@ You can disable animating `enter` or `leave` animations if you want. For example
|
||||
|
||||
### `componentWillEnter(callback)`
|
||||
|
||||
This is called at the same time as `componentDidMount()`. It will block other animations from occurring until `callback` is called.
|
||||
This is called at the same time as `componentDidMount()` for components added to an existing `TransitionGroup`. It will block other animations from occurring until `callback` is called. It will not be called on the initial render of a `TransitionGroup`.
|
||||
|
||||
### `componentDidEnter()`
|
||||
|
||||
This is called when the `willEnter` `callback` is called.
|
||||
This is called after the `callback` function that was passed to `componentWillEnter` is called.
|
||||
|
||||
### `componentWillLeave(callback)`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user