157k views
2 votes
Using REACT,

create a page of an application that enables users to vote and leave reviews on movies.
You should include at least the following components:
MovieList: a container for all the Movie components and their data.
Movie: a component that represents movie data (i.e. image, synopsis, rating, etc…)
Stars: a one to five-star rating component that allows users to rate something (movies in this case, but remember that components are reusable, so you could use it elsewhere!)
ReviewList: a container inside of a Movie that houses Review components.
Review: A text review a user can leave on a movie.
ReviewForm: a form at the bottom of a Movie component that allows users to leave reviews. When submitted, the review should be added to the movie. All this data can be stored in an array, no networking or database needed for this assignment.

1 Answer

6 votes

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.

User Jdlm
by
7.7k points