using Fetch API with ReactJS to get list of movies however I get this issue. Can someone help with this
 fetch("https://reactnative.dev/movies.json", {
      mode: "no-cors", // 'cors' by default
    })
      .then((response) => response.json())
      .then((json) => {
        console.log(json);
      });

 
     
    