mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 23:05:23 +00:00
- Overview of add-ons for the add-ons page. - Better title for `ReactLink`. - Nicer code format for classSet example. - Better explanation for `classSet`.
17 lines
759 B
Markdown
17 lines
759 B
Markdown
---
|
|
id: addons
|
|
title: Add-ons
|
|
layout: docs
|
|
permalink: addons.html
|
|
prev: tooling-integration.html
|
|
next: animation.html
|
|
---
|
|
|
|
`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:
|
|
|
|
- `ReactTransitions`, for dealing with animations and transitions that are usually not simple to implement, such as before a component's removal.
|
|
- `ReactLink`, to simplify the coordination between user's form input data and and the component's state.
|
|
- `classSet`, for manipulating the DOM `class` string a bit more cleanly.
|
|
|
|
To get the add-ons, use `react-with-addons.js` (and its minified counterpart) rather than the common `react.js`.
|