Final answer:
To create a movie review application with REACT, you will need to design and implement several components such as MovieList, Movie, Stars, ReviewList, Review, and ReviewForm. These components will enable users to vote and leave reviews on movies. The data can be stored in a JavaScript array, without the need for networking or a database.
Step-by-step explanation:
Creating a Movie Review Application with REACT
To create a movie review application with REACT, you will need to design and implement several components. Here's an outline of the key components:
MovieList: This component acts as a container for all the Movie components and their data.
Movie: This component represents the movie data, including the image, synopsis, rating, etc.
Stars: A one to five-star rating component that allows users to rate movies. This component is reusable and can be used elsewhere.
ReviewList: A container inside the Movie component that houses Review components.
Review: The Review component represents a text review that a user can leave on a movie.
ReviewForm: A form at the bottom of the Movie component that allows users to leave reviews. When submitted, the review should be added to the movie.
You can store all the movie data in a JavaScript array, as no networking or database is needed for this assignment.