Step-By-Step: How to Add Redux Saga to a React & Redux App
Read moreHow do I start redux saga?
First we import our Saga from the ./sagas module . Then we create a middleware using the factory function createSagaMiddleware exported by the redux-saga library. Before running our helloSaga , we must connect our middleware to the Store using applyMiddleware . Then we can use the sagaMiddleware.
Read more