├── .gitignore ├── README.md ├── index.js ├── package.json └── templates ├── App.js ├── index.js ├── store.js └── templates.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/package.json -------------------------------------------------------------------------------- /templates/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/templates/App.js -------------------------------------------------------------------------------- /templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/templates/index.js -------------------------------------------------------------------------------- /templates/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/templates/store.js -------------------------------------------------------------------------------- /templates/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjpatty/create-react-redux-router-app/HEAD/templates/templates.js --------------------------------------------------------------------------------