├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── actions └── SearchActions.js ├── api └── PhotoSearch.js ├── components ├── PhotoList.jsx └── SearchInput.jsx ├── constants └── SearchActionTypes.jsx ├── containers ├── App.jsx └── SearchApp.jsx ├── index.js ├── reducers └── photos.jsx └── stylesheets └── style.css /.eslintignore: -------------------------------------------------------------------------------- 1 | *.css -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea 3 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/actions/SearchActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/actions/SearchActions.js -------------------------------------------------------------------------------- /src/api/PhotoSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/api/PhotoSearch.js -------------------------------------------------------------------------------- /src/components/PhotoList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/components/PhotoList.jsx -------------------------------------------------------------------------------- /src/components/SearchInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/components/SearchInput.jsx -------------------------------------------------------------------------------- /src/constants/SearchActionTypes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/constants/SearchActionTypes.jsx -------------------------------------------------------------------------------- /src/containers/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/containers/App.jsx -------------------------------------------------------------------------------- /src/containers/SearchApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/containers/SearchApp.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/photos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/reducers/photos.jsx -------------------------------------------------------------------------------- /src/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yildizberkay/redux-example/HEAD/src/stylesheets/style.css --------------------------------------------------------------------------------