To start, clone this repo and run:
npm install
(install all needed dependencies)npm start
(start our local development server)
http://0.0.0.0:3000
is the default path to our served site
axios
.get(endpoints.mostPopularMovies())
.then((res) => this.setMovieList(res.data.results))
.catch((error) => console.log(error));
const response = {
backdrop_path,
original_title,
overview,
release_date,
vote_average,
vote_count,
}