Description
In this React movie app tutorial, we're going to: Use a real API to search for movies as we typeCreate a "Netflix style" horizontal scroll effectAdd movies to and remove them from our favouritesSave o ...
Summary
- Fire up Postman and paste in the "OMBb API" URL you received in your email (highlighted in yellow in the image above).
- This will query the API for all movies containing "star wars" in the title.
- We're going to take the Poster image for each object and display it in our app How to Set Up a React Project Ok with that out of the way, we can get into the good stuff – creating a React project.
- npm start How to Add Movies to State The App component will hold the state for the app.