├── .env ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico └── index.html └── 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=KJwZZIJSFimshuivMSVGaiYzkRomp15f2vKjsnK4bKzuUzVLzA -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/ChannelCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/ChannelCard.jsx -------------------------------------------------------------------------------- /src/components/ChannelDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/ChannelDetail.jsx -------------------------------------------------------------------------------- /src/components/Feed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/Feed.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/SearchBar.jsx -------------------------------------------------------------------------------- /src/components/SearchFeed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/SearchFeed.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/VideoCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/VideoCard.jsx -------------------------------------------------------------------------------- /src/components/VideoDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/VideoDetail.jsx -------------------------------------------------------------------------------- /src/components/Videos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/Videos.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/fetchFromAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/Yuotube-Clone/HEAD/src/utils/fetchFromAPI.js --------------------------------------------------------------------------------