This repository contains examples of a simple application using the different state managers listed below.
# install
yarn
Native approach of a state management using the following hooks:
useReducer
useContext
yarn run start:reducer-context
The goal was to explain how to move from a redux application towards a redux-toolkit one. You can check and play with both of them using the following command
# Redux
yarn run start:sandbox
# Redux Toolkit
yarn run start:redux
The same application was developed using Recoil - both hooks and async functions.
yarn run start:recoil
TBD