This is a project is a simple todo application. The main intension of the application is to work with a state management library called Redux ToolKIT.
The core components of Redux ToolKIT and how they interact with eachother.
- Create a store: Configure the store.
- Add reducers: Reducers are added in the features folder according to the feature we're storing the data of.
- Set the Provider Context in the entry point of the react app.
- Use the
useDispatch()
hook to call the reducer actions. - Use the
useSelector()
hook to get values from store.