├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── apis │ └── youtube.js ├── components │ ├── App.js │ ├── Searchbar.js │ ├── VideoDetail.js │ ├── VideoItem.js │ └── VideoList.js ├── index.js └── style │ └── video.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/apis/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/apis/youtube.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Searchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/components/Searchbar.js -------------------------------------------------------------------------------- /src/components/VideoDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/components/VideoDetail.js -------------------------------------------------------------------------------- /src/components/VideoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/components/VideoItem.js -------------------------------------------------------------------------------- /src/components/VideoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/components/VideoList.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/src/style/video.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anarsultani97/modern-react-redux/HEAD/yarn.lock --------------------------------------------------------------------------------