|
|
|
|
|
by acemarke
1950 days ago
|
|
Not sure what you mean by the "pretends" statement. Both the Redux core and Redux Toolkit _are_ completely UI-agnostic, and can be used with _any_ UI layer or even standalone. Yes, most Redux usage is with React, and we do orient our docs around the assumption that you're probably using Redux and React together, but there's many people who are using Redux separately. |
|
The default assumption for any production React application is that it will need Redux at some point. It’s much more efficient to start the React project with Redux, than trying to bolt on Redux after React project is underway after a while. Redux Toolkit does make things bit easier.
It’s like how React pretends that JSX is optional, when we all know JSX is requirement in React projects.
Thanks for all the work on Redux and Redux Toolkit.