├── .eslintrc ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── actions │ ├── PageActions.js │ └── UserActions.js ├── components │ ├── App.js │ ├── BigPhoto.js │ ├── ListPhoto.js │ ├── Page.js │ ├── PhotoManager.js │ └── User.js ├── containers │ ├── PageContainer.js │ └── UserContainer.js ├── index.css ├── index.js ├── reducers │ ├── index.js │ ├── page.js │ └── user.js ├── registerServiceWorker.js ├── store │ └── configureStore.js └── util │ └── date.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/actions/PageActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/actions/PageActions.js -------------------------------------------------------------------------------- /src/actions/UserActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/actions/UserActions.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/BigPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/BigPhoto.js -------------------------------------------------------------------------------- /src/components/ListPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/ListPhoto.js -------------------------------------------------------------------------------- /src/components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/Page.js -------------------------------------------------------------------------------- /src/components/PhotoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/PhotoManager.js -------------------------------------------------------------------------------- /src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/components/User.js -------------------------------------------------------------------------------- /src/containers/PageContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/containers/PageContainer.js -------------------------------------------------------------------------------- /src/containers/UserContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/containers/UserContainer.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/reducers/page.js -------------------------------------------------------------------------------- /src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/reducers/user.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/util/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/src/util/date.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfarseer/redux-course-ru-v2/HEAD/yarn.lock --------------------------------------------------------------------------------