This is a simple Movie Rating application built with React, enabling users to rate movies they have watched.
- Display a list of movies by searching
- Fetch movies from OMDb API
- Show details of the movie
- Rate movies using a star rating component
- Save, retrieve and update movie ratings
- Clone the repository:
git clone https://github.com/guvenyorukoglu/movie-rating-app.git
- Navigate to the project directory:
cd movie-rating-app
- Install the dependencies:
npm install
- Start the development server:
npm start
- Open your browser and navigate to
http://localhost:3000
.
App.js
: The main component that renders the application.StarRating.js
: A component for rendering star ratings.index.js
: The entry point of the application.App.css
: The main CSS file for styling the application.
Special thanks to Jonas Schmedtmann for his amazing courses and tutorials.