├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── views └── indexpage │ ├── action.js │ ├── index.html │ ├── index.js │ ├── reducer │ ├── index.js │ ├── todoReducer1.js │ └── todoReducer2.js │ └── style.less └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env","react"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | .DS_Store 4 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/package.json -------------------------------------------------------------------------------- /views/indexpage/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/action.js -------------------------------------------------------------------------------- /views/indexpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/index.html -------------------------------------------------------------------------------- /views/indexpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/index.js -------------------------------------------------------------------------------- /views/indexpage/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/reducer/index.js -------------------------------------------------------------------------------- /views/indexpage/reducer/todoReducer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/reducer/todoReducer1.js -------------------------------------------------------------------------------- /views/indexpage/reducer/todoReducer2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/views/indexpage/reducer/todoReducer2.js -------------------------------------------------------------------------------- /views/indexpage/style.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gourdbaby/react-redux/HEAD/webpack.config.js --------------------------------------------------------------------------------