File size: 228 Bytes
f5071ca
 
 
 
 
 
1
2
3
4
5
6
7
import { API_URL, API_KEY } from "../Config/config";

export const fetchListData = id => {
  const url = `${API_URL}movie/${id}?api_key=${API_KEY}&language=en-US`;
  return fetch(url).then(response => response.json());
};