Closed ambethia closed 6 years ago
https://github.com/andrewjlanza/party/tree/master/src
abaft-society.surge.sh
Some questions on styling. I could not make the styled components work. HELP!
I think you might have forgotten to push your last commit(s) to Github.
Your homework was marked: Meets Expectations
“Great job!” — via Jason L Perry
It's 1989. The Internet has just come online and Tim Berners-Lee is going to invent the World Wide Web. The Cold War is ending, and the Berlin Wall will be coming down. It's also going to be a great year for film. In this assignment, you're going to build a small webpage that showcases some of the most popular movies of 1989.
The data for this assignment comes from The Movie DB API, but you won't need this API unless you're attacking Epic Mode.
Download and use this JSON file as your data source. Take a look a the structure of the data. It contains an array of objects that look like this:
You'll notice that the poster images are just the file names. You can get the full URL to a poster by concatenating the path with the following base URL:
In this case:
Objectives
create-react-app
to build a React projectArray.prototype.map
to render a collection of components in ReactRequirements
You do not need to use the tmdb.org API for this assignment; you should use the supplied JSON file (see above).
Explorer Mode
App
andMovie
.styled-components
to style your app.Adventure Mode
1989-05-24
.Epic Mode
This is the API end-point that supplied the data file for this project:
https://api.themoviedb.org/3/discover/movie?primary_release_year=1989&sort_by=popularity.desc&api_key=YOUR_KEY_HERE
NOTE: You'll need to sign up for your own API key first.
Additional Resources