├── .env ├── .gitignore ├── LICENSE ├── README.md ├── logo.png ├── package.json ├── public ├── favicon.ico ├── index.html └── robots.txt └── src ├── App.js ├── components ├── ChannelCard.jsx ├── ChannelDetail.jsx ├── Feed.jsx ├── Loader.jsx ├── Navbar.jsx ├── SearchBar.jsx ├── SearchFeed.jsx ├── Sidebar.jsx ├── VideoCard.jsx ├── VideoDetail.jsx ├── Videos.jsx └── index.js ├── index.css ├── index.js └── utils ├── constants.js └── fetchFromAPI.js /.env: -------------------------------------------------------------------------------- 1 | REACT_APP_RAPID_API_KEY=fd5372e9d4mshc7a5c1f09dcd8c3p16b2c4jsne8dd4a7cbab7 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/ChannelCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/ChannelCard.jsx -------------------------------------------------------------------------------- /src/components/ChannelDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/ChannelDetail.jsx -------------------------------------------------------------------------------- /src/components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/Feed.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/SearchBar.jsx -------------------------------------------------------------------------------- /src/components/SearchFeed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/SearchFeed.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/VideoCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/VideoCard.jsx -------------------------------------------------------------------------------- /src/components/VideoDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/VideoDetail.jsx -------------------------------------------------------------------------------- /src/components/Videos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/Videos.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/fetchFromAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-videos/HEAD/src/utils/fetchFromAPI.js --------------------------------------------------------------------------------