Skip to content

Commit d42f2dd

Browse files
authored
Remove reference to a deprecated package (reduxjs#3879)
1 parent 47acb22 commit d42f2dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/faq/OrganizingState.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Some common rules of thumb for determining what kind of data should be put into
3030
- Do you want to cache the data (ie, use what's in state if it's already there instead of re-requesting it)?
3131
- Do you want to keep this data consistent while hot-reloading UI components (which may lose their internal state when swapped)?
3232

33-
There are a number of community packages that implement various approaches for storing per-component state in a Redux store instead, such as [redux-ui](https://github.com/tonyhb/redux-ui), [redux-component](https://github.com/tomchentw/redux-component), [redux-react-local](https://github.com/threepointone/redux-react-local), and more. It's also possible to apply Redux's principles and concept of reducers to the task of updating local component state as well, along the lines of `this.setState( (previousState) => reducer(previousState, someAction))`.
33+
There are a number of community packages that implement various approaches for storing per-component state in a Redux store instead, such as [redux-component](https://github.com/tomchentw/redux-component), [redux-react-local](https://github.com/threepointone/redux-react-local), and more. It's also possible to apply Redux's principles and concept of reducers to the task of updating local component state as well, along the lines of `this.setState( (previousState) => reducer(previousState, someAction))`.
3434

3535
#### Further information
3636

0 commit comments

Comments
 (0)