├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── actions │ └── simpleAction.js ├── index.css ├── index.js ├── logo.svg ├── reducers │ ├── rootReducer.js │ └── simpleReducer.js ├── registerServiceWorker.js └── store.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/actions/simpleAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/actions/simpleAction.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/reducers/rootReducer.js -------------------------------------------------------------------------------- /src/reducers/simpleReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/reducers/simpleReducer.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/src/store.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efalayi/redux-cra/HEAD/yarn.lock --------------------------------------------------------------------------------