Skip to content

Commit 55e77e8

Browse files
authored
Update wording for "when to use Redux"
1 parent 2f796c2 commit 55e77e8

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,18 @@ It is tiny (2kB, including dependencies).
3232
3333
## Before Proceeding Further
3434

35-
When to use Redux:
35+
Redux is a valuable tool for organizing your state, but you should also consider whether it's appropriate for your situation. Here's some suggestions on when it makes sense to use Redux:
3636
* You have reasonable amounts of data changing over time
3737
* You need a single source of truth for your state
3838
* You find that keeping all your state in a top-level component is no longer sufficient
3939

4040
Yes, these guidelines are subjective and vague, but this is for good reason. The point at which you should integrate Redux into your application is different for every user and different for every application.
4141

42-
>**Also read:**<br>
43-
>**[You Might Not Need Redux](https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367)**<br>
44-
>**[The Tao of Redux, Part 1 - Implementation and Intent](http://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-1/)**<br>
45-
>**[The Tao of Redux, Part 2 - Practice and Philosophy](http://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-2/)**
42+
>**For more thoughts on how Redux is meant to be used, see:**<br>
43+
>- **[You Might Not Need Redux](https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367)**<br>
44+
>- **[The Tao of Redux, Part 1 - Implementation and Intent](http://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-1/)**<br>
45+
>- **[The Tao of Redux, Part 2 - Practice and Philosophy](http://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-2/)**
46+
>- **[Redux FAQ](https://redux.js.org/faq)**
4647
4748
## Developer Experience
4849

0 commit comments

Comments
 (0)