├── .gitignore ├── README.md ├── craco.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── Components │ └── Header.tsx ├── Routes │ ├── Home.tsx │ ├── Search.tsx │ └── Tv.tsx ├── api.ts ├── index.tsx ├── react-app-env.d.ts ├── styled.d.ts ├── theme.ts └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/Components/Header.tsx -------------------------------------------------------------------------------- /src/Routes/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/Routes/Home.tsx -------------------------------------------------------------------------------- /src/Routes/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/Routes/Search.tsx -------------------------------------------------------------------------------- /src/Routes/Tv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/Routes/Tv.tsx -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/styled.d.ts -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/react-masterclass/HEAD/tsconfig.json --------------------------------------------------------------------------------