├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierrc ├── README.md ├── api └── user.json ├── package.json ├── postcss.config.js ├── src ├── css │ └── index.scss ├── images │ └── webwxgetmsgimg (1).jpeg ├── index.html ├── index.js ├── index2.js ├── pages │ ├── Counter │ │ └── Counter.js │ ├── Home │ │ └── Home.js │ ├── Page1 │ │ └── Page1.js │ └── UserInfo │ │ └── UserInfo.js ├── redux │ ├── actions │ │ ├── couters.js │ │ └── userInfo.js │ ├── reducers.js │ ├── reducers │ │ ├── couters.js │ │ └── userInfo.js │ └── store.js ├── router │ └── router.js └── utils │ └── utils.js ├── test ├── index.spec.js └── test_helper.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/README.md -------------------------------------------------------------------------------- /api/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/api/user.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/css/index.scss -------------------------------------------------------------------------------- /src/images/webwxgetmsgimg (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/images/webwxgetmsgimg (1).jpeg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/index2.js -------------------------------------------------------------------------------- /src/pages/Counter/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/pages/Counter/Counter.js -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Page1/Page1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/pages/Page1/Page1.js -------------------------------------------------------------------------------- /src/pages/UserInfo/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/pages/UserInfo/UserInfo.js -------------------------------------------------------------------------------- /src/redux/actions/couters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/actions/couters.js -------------------------------------------------------------------------------- /src/redux/actions/userInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/actions/userInfo.js -------------------------------------------------------------------------------- /src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/reducers.js -------------------------------------------------------------------------------- /src/redux/reducers/couters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/reducers/couters.js -------------------------------------------------------------------------------- /src/redux/reducers/userInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/reducers/userInfo.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/router/router.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/test/test_helper.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/future-builder007/react-wepack4-xht/HEAD/webpack.config.js --------------------------------------------------------------------------------