You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Docs] Add recent addons to addons.html; tweak wording
Add PureRenderMixin and Perf to this page. Also, I think it's better if the link titles reflect the name used by these addons.
(cherry picked from commit d95a4ef)
Copy file name to clipboardExpand all lines: docs/docs/09-addons.md
+11-6Lines changed: 11 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,16 @@ next: animation.html
9
9
10
10
`React.addons` is where we park some useful utilities for building React apps. **These should be considered experimental** but will eventually be rolled into core or a blessed utilities library:
11
11
12
-
-[`ReactTransitions`](animation.html), for dealing with animations and transitions that are usually not simple to implement, such as before a component's removal.
13
-
-[`ReactLink`](two-way-binding-helpers.html), to simplify the coordination between user's form input data and and the component's state.
14
-
-[`classSet()`](class-name-manipulation.html), for manipulating the DOM `class` string a bit more cleanly.
15
-
-[`ReactTestUtils`](test-utils.html), simple helpers for writing test cases (unminified build only).
16
-
-[`cloneWithProps()`](clone-with-props.html), to make shallow copies of React components and change their props.
17
-
-[`update()`](update.html), a helper function that makes dealing with immutable data in JavaScript easier.
12
+
-[`TransitionGroup` and `CSSTransitionGroup`](animation.html), for dealing with animations and transitions that are usually not simple to implement, such as before a component's removal.
13
+
-[`LinkedStateMixin`](two-way-binding-helpers.html), to simplify the coordination between user's form input data and the component's state.
14
+
-[`classSet`](class-name-manipulation.html), for manipulating the DOM `class` string a bit more cleanly.
15
+
-[`TestUtils`](test-utils.html), simple helpers for writing test cases (unminified build only).
16
+
-[`cloneWithProps`](clone-with-props.html), to make shallow copies of React components and change their props.
17
+
-[`update`](update.html), a helper function that makes dealing with immutable data in JavaScript easier.
18
+
19
+
The add-ons below are in the development (unminified) version of React only:
20
+
21
+
-[`PureRenderMixin`](pure-render-mixin.html), a performance booster under certain situations.
22
+
-[`Perf`](perf.html), for measuring performance and giving you hint where to optimize.
18
23
19
24
To get the add-ons, use `react-with-addons.js` (and its minified counterpart) rather than the common `react.js`.
0 commit comments