├── .gitignore ├── README.md ├── db.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── Cart.js ├── Header.js └── Main.js ├── index.css ├── index.js ├── logo.svg ├── redux ├── action.js ├── constant.js ├── productAction.js ├── productReducer.js ├── productSaga.js ├── reducer.js ├── rootReducer.js └── store.js ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/README.md -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/components/Cart.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/components/Main.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/redux/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/action.js -------------------------------------------------------------------------------- /src/redux/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/constant.js -------------------------------------------------------------------------------- /src/redux/productAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/productAction.js -------------------------------------------------------------------------------- /src/redux/productReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/productReducer.js -------------------------------------------------------------------------------- /src/redux/productSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/productSaga.js -------------------------------------------------------------------------------- /src/redux/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/reducer.js -------------------------------------------------------------------------------- /src/redux/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/rootReducer.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anil-sidhu/react-redux-saga/HEAD/src/setupTests.js --------------------------------------------------------------------------------