armadiazrino

Untitled

Jun 23rd, 2022
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. useEffect(() => {
  2. fetch('https://62a809c7a89585c1770b4c56.mockapi.io/TopMovies')
  3. .then(response => response.json())
  4. .then(data => {
  5. setTop250(data);
  6. setMostPopular(data);
  7. })
  8. .catch(error => console.log('error', error));
  9. }, []);
Advertisement
Add Comment
Please, Sign In to add comment