Skip to content

roniy68/redux-toolkit

Repository files navigation

Redux Toolkit

Simple project showing how to set up redux toolkit. In the project, I am utilizing RTK Query - createAsyncThunk package from @redux/toolkit to fetch data

Live project

View live project

Docs

Redux Toolkit Docs

Existing App

npm install @reduxjs/toolkit react-redux

@reduxjs/toolkit

consists of few libraries

  • redux (core library, state management)
  • immer (allows to mutate state)
  • redux-thunk (handles async actions)
  • reselect (simplifies reducer functions)

Extras

  • redux devtools
  • combine reducers