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
Copy file name to clipboardExpand all lines: content/docs/addons.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -10,26 +10,26 @@ permalink: docs/addons.html
10
10
11
11
The React add-ons are a collection of useful utility modules for building React apps. **These should be considered experimental** and tend to change more often than the core.
12
12
13
-
-[`createFragment`](create-fragment.html), to create a set of externally-keyed children.
13
+
-[`createFragment`](/docs/create-fragment.html), to create a set of externally-keyed children.
14
14
15
15
The add-ons below are in the development (unminified) version of React only:
16
16
17
-
-[`Perf`](perf.html), a performance profiling tool for finding optimization opportunities.
18
-
-[`ReactTestUtils`](test-utils.html), simple helpers for writing test cases.
17
+
-[`Perf`](/docs/perf.html), a performance profiling tool for finding optimization opportunities.
18
+
-[`ReactTestUtils`](/docs/test-utils.html), simple helpers for writing test cases.
19
19
20
20
### Legacy Add-ons
21
21
22
22
The add-ons below are considered legacy and their use is discouraged. They will keep working in observable future, but there is no further development.
23
23
24
-
-[`PureRenderMixin`](pure-render-mixin.html). Use [`React.PureComponent`](/docs/react-api.html#reactpurecomponent) instead.
25
-
-[`shallowCompare`](shallow-compare.html), a helper function that performs a shallow comparison for props and state in a component to decide if a component should update. We recommend using [`React.PureComponent`](/docs/react-api.html#reactpurecomponent) instead.
26
-
-[`update`](update.html). Use [`kolodny/immutability-helper`](https://github.com/kolodny/immutability-helper) instead.
27
-
-[`ReactDOMFactories`](dom-factories.html), pre-configured DOM factories to make React easier to use without JSX.
24
+
-[`PureRenderMixin`](/docs/pure-render-mixin.html). Use [`React.PureComponent`](/docs/react-api.html#reactpurecomponent) instead.
25
+
-[`shallowCompare`](/docs/shallow-compare.html), a helper function that performs a shallow comparison for props and state in a component to decide if a component should update. We recommend using [`React.PureComponent`](/docs/react-api.html#reactpurecomponent) instead.
26
+
-[`update`](/docs/update.html). Use [`kolodny/immutability-helper`](https://github.com/kolodny/immutability-helper) instead.
27
+
-[`ReactDOMFactories`](https://www.npmjs.com/package/react-dom-factories), pre-configured DOM factories to make React easier to use without JSX.
28
28
29
29
### Deprecated Add-ons
30
30
31
-
-[`LinkedStateMixin`](two-way-binding-helpers.html) has been deprecated.
32
-
-[`TransitionGroup` and `CSSTransitionGroup`](animation.html) have been deprecated in favor of [their drop-in replacements](https://github.com/reactjs/react-transition-group/tree/v1-stable).
31
+
-[`LinkedStateMixin`](/docs/two-way-binding-helpers.html) has been deprecated.
32
+
-[`TransitionGroup` and `CSSTransitionGroup`](/docs/animation.html) have been deprecated in favor of [their drop-in replacements](https://github.com/reactjs/react-transition-group/tree/v1-stable).
33
33
34
34
## Using React with Add-ons
35
35
@@ -40,7 +40,7 @@ import createFragment from 'react-addons-create-fragment'; // ES6
40
40
var createFragment =require('react-addons-create-fragment'); // ES5 with npm
41
41
```
42
42
43
-
When using a CDN, you can use `react-with-addons.js` instead of `react.js`:
43
+
When using React 15 or earlier from a CDN, you can use `react-with-addons.js` instead of `react.js`:
0 commit comments