├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── bin └── webpack-dev-server.js ├── config └── index.js ├── db.json ├── package.json ├── src ├── actions │ └── actions.js ├── components │ └── Athlete.js ├── containers │ ├── AthleteApp.js │ ├── DevTools.js │ ├── DevToolsWindow.js │ └── Root.js ├── helpers │ └── auth.js ├── index.html ├── index.js ├── layouts │ └── CoreLayout.js ├── reducers │ └── index.js ├── routes │ └── index.js ├── store │ └── configureStore.js ├── styles │ ├── _base.scss │ ├── core.scss │ └── vendor │ │ └── _normalize.scss ├── utils │ └── index.js └── views │ ├── AthleteView.js │ └── HomeView.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage" : 0 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | *.spec.js 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/README.md -------------------------------------------------------------------------------- /bin/webpack-dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/bin/webpack-dev-server.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/config/index.js -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/actions/actions.js -------------------------------------------------------------------------------- /src/components/Athlete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/components/Athlete.js -------------------------------------------------------------------------------- /src/containers/AthleteApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/containers/AthleteApp.js -------------------------------------------------------------------------------- /src/containers/DevTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/containers/DevTools.js -------------------------------------------------------------------------------- /src/containers/DevToolsWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/containers/DevToolsWindow.js -------------------------------------------------------------------------------- /src/containers/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/containers/Root.js -------------------------------------------------------------------------------- /src/helpers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/helpers/auth.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/CoreLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/layouts/CoreLayout.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- 1 | // Settings go here 2 | -------------------------------------------------------------------------------- /src/styles/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/styles/core.scss -------------------------------------------------------------------------------- /src/styles/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/styles/vendor/_normalize.scss -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/views/AthleteView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/views/AthleteView.js -------------------------------------------------------------------------------- /src/views/HomeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/src/views/HomeView.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayiorbeii/react-redux-rest-example/HEAD/webpack.config.js --------------------------------------------------------------------------------