├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .nyc_output ├── 022f543c-edba-469a-8460-52a3a3a0724c.json ├── 0b94db04-251f-4ce1-9a43-745d3913961a.json └── processinfo │ ├── 022f543c-edba-469a-8460-52a3a3a0724c.json │ ├── 0b94db04-251f-4ce1-9a43-745d3913961a.json │ └── index.json ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── index.js └── spec.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logfile 2 | 3 | .env 4 | 5 | node_modules/ 6 | lib/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ -------------------------------------------------------------------------------- /.nyc_output/022f543c-edba-469a-8460-52a3a3a0724c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.nyc_output/022f543c-edba-469a-8460-52a3a3a0724c.json -------------------------------------------------------------------------------- /.nyc_output/0b94db04-251f-4ce1-9a43-745d3913961a.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.nyc_output/processinfo/022f543c-edba-469a-8460-52a3a3a0724c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.nyc_output/processinfo/022f543c-edba-469a-8460-52a3a3a0724c.json -------------------------------------------------------------------------------- /.nyc_output/processinfo/0b94db04-251f-4ce1-9a43-745d3913961a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.nyc_output/processinfo/0b94db04-251f-4ce1-9a43-745d3913961a.json -------------------------------------------------------------------------------- /.nyc_output/processinfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.nyc_output/processinfo/index.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/src/spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-road-to-learn-react/use-combined-reducers/HEAD/webpack.config.js --------------------------------------------------------------------------------