├── .gitignore ├── README.md ├── config ├── babel.dev.js ├── babel.prod.js ├── eslint.js ├── flow │ ├── css.js.flow │ └── file.js.flow ├── paths.js ├── polyfills.js ├── webpack.config.dev.js └── webpack.config.prod.js ├── favicon.ico ├── images └── demo.gif ├── index.html ├── package.json ├── scripts ├── build.js ├── start.js └── utils │ ├── chrome.applescript │ ├── detectPort.js │ └── prompt.js └── src ├── App.css ├── App.js ├── actions ├── action-types.js └── people-actions.js ├── components ├── PeopleContainer.js ├── PeopleList.js ├── Person.js └── PersonInput.js ├── index.css ├── index.js ├── logo.svg ├── reducers ├── index.js └── people-reducer.js └── store └── configure-store.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/README.md -------------------------------------------------------------------------------- /config/babel.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/babel.dev.js -------------------------------------------------------------------------------- /config/babel.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/babel.prod.js -------------------------------------------------------------------------------- /config/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/eslint.js -------------------------------------------------------------------------------- /config/flow/css.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | -------------------------------------------------------------------------------- /config/flow/file.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare export default string; 3 | -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/images/demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/utils/chrome.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/scripts/utils/chrome.applescript -------------------------------------------------------------------------------- /scripts/utils/detectPort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/scripts/utils/detectPort.js -------------------------------------------------------------------------------- /scripts/utils/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/scripts/utils/prompt.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/actions/action-types.js -------------------------------------------------------------------------------- /src/actions/people-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/actions/people-actions.js -------------------------------------------------------------------------------- /src/components/PeopleContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/components/PeopleContainer.js -------------------------------------------------------------------------------- /src/components/PeopleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/components/PeopleList.js -------------------------------------------------------------------------------- /src/components/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/components/Person.js -------------------------------------------------------------------------------- /src/components/PersonInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/components/PersonInput.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/people-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/reducers/people-reducer.js -------------------------------------------------------------------------------- /src/store/configure-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstringer/create-react-app-with-redux/HEAD/src/store/configure-store.js --------------------------------------------------------------------------------