├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── MovieCard.jsx │ └── NavBar.jsx ├── contexts │ └── MovieContext.jsx ├── css │ ├── App.css │ ├── Favorites.css │ ├── Home.css │ ├── MovieCard.css │ ├── Navbar.css │ └── index.css ├── main.jsx ├── pages │ ├── Favorites.jsx │ └── Home.jsx └── services │ └── api.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/MovieCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/components/MovieCard.jsx -------------------------------------------------------------------------------- /src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/components/NavBar.jsx -------------------------------------------------------------------------------- /src/contexts/MovieContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/contexts/MovieContext.jsx -------------------------------------------------------------------------------- /src/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/App.css -------------------------------------------------------------------------------- /src/css/Favorites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/Favorites.css -------------------------------------------------------------------------------- /src/css/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/Home.css -------------------------------------------------------------------------------- /src/css/MovieCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/MovieCard.css -------------------------------------------------------------------------------- /src/css/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/Navbar.css -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Favorites.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/pages/Favorites.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/src/services/api.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Learn-React-In-One-Project/HEAD/vite.config.js --------------------------------------------------------------------------------