Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- useEffect(() => {
- fetch('https://62a809c7a89585c1770b4c56.mockapi.io/TopMovies')
- .then(response => response.json())
- .then(data => {
- setTop250(data);
- setMostPopular(data);
- })
- .catch(error => console.log('error', error));
- }, []);
Advertisement
Add Comment
Please, Sign In to add comment