├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── proxy.config.js ├── src ├── components │ └── Count │ │ ├── Count.js │ │ └── Count.module.less ├── constants │ └── count.js ├── containers │ └── App.js ├── entries │ ├── index.html │ └── index.js ├── reducers │ ├── count.js │ └── index.js ├── routes │ └── index.js ├── sagas │ ├── count.js │ └── index.js └── services │ └── api.js └── webpack.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .DS_Store 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /proxy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/proxy.config.js -------------------------------------------------------------------------------- /src/components/Count/Count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/components/Count/Count.js -------------------------------------------------------------------------------- /src/components/Count/Count.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/components/Count/Count.module.less -------------------------------------------------------------------------------- /src/constants/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/constants/count.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/entries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/entries/index.html -------------------------------------------------------------------------------- /src/entries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/entries/index.js -------------------------------------------------------------------------------- /src/reducers/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/reducers/count.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/sagas/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/sagas/count.js -------------------------------------------------------------------------------- /src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/sagas/index.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/src/services/api.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorrycc/react-redux-boilerplate/HEAD/webpack.config.js --------------------------------------------------------------------------------