Redux-Saga is a library primarily aimed to make application side effects like asynchronous data fetching and accessing impure browser cache. It is very easy to manage and efficient to execute. With Redux-Saga, it is easy to test and handle failure effortlessly.
Getting started with Redux-Saga:
npm install redux-saga
In the project directory, you can run:
npm install
# or
yarn install
then :
npm start
# or
yarn start
The purpose of the web Quiz is to implement a multi-question that each question includes true and false answers. The processes of storing and managing the answers to each question are done using Redax & Redux saga.