├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── components │ └── .keep ├── containers │ └── App │ │ ├── actions.js │ │ ├── constants.js │ │ ├── images │ │ └── logo.svg │ │ ├── index.js │ │ ├── reducer.js │ │ ├── sagas.js │ │ ├── selectors.js │ │ └── styles.css ├── global-reducer.js ├── global-sagas.js ├── index.js ├── routes.js ├── store.js ├── styles │ └── main.css └── tests │ └── index.test.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/public/index.html -------------------------------------------------------------------------------- /src/components/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/App/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/actions.js -------------------------------------------------------------------------------- /src/containers/App/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/constants.js -------------------------------------------------------------------------------- /src/containers/App/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/images/logo.svg -------------------------------------------------------------------------------- /src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/index.js -------------------------------------------------------------------------------- /src/containers/App/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/reducer.js -------------------------------------------------------------------------------- /src/containers/App/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/sagas.js -------------------------------------------------------------------------------- /src/containers/App/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/selectors.js -------------------------------------------------------------------------------- /src/containers/App/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/containers/App/styles.css -------------------------------------------------------------------------------- /src/global-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/global-reducer.js -------------------------------------------------------------------------------- /src/global-sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/global-sagas.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/src/tests/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzhva/create-react-redux-app/HEAD/yarn.lock --------------------------------------------------------------------------------