This project is a simple movie app built with React. It allows you to showcase your favorite movies or TV shows, add new ones, and filter them by title or rating. The app demonstrates the use of React functional components and React Hooks.
useState
and other React hooks for state management.MovieCard
components.Each movie has the following attributes:
title
: The name of the movie or TV show.description
: A short description.posterURL
: A link to the movie poster image.rating
: A numeric rating.git clone <repository-url>
cd react-movie-app
npm install
npm start
http://localhost:3000
to view it in your browser.react-hook/
├── public/
│ └── index.html
├── src/
│ ├── components/
│ │ ├── AddMovie.jsx
│ │ ├── Filter.jsx
│ │ ├── MovieCard.jsx
│ │ └── MovieList.jsx
│ ├── App.js
│ ├── index.js
│ └── index.css
├── package.json
└── README.md
This project is for educational purposes.