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