This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Netflix-Clone/src/axios-movies.js
2020-05-14 17:38:17 -04:00

9 lines
192 B
JavaScript

import axios from 'axios';
/** base url to make requests to the the movie database */
const instance = axios.create({
baseURL: 'https://api.themoviedb.org/3',
});
export default instance;