this is the code that I am using but I am not getting a Json Response
const getCustomers = async () => {
const customersData = await fetch("/login?shop=ShopName.myshopify.com/admin/api/2022-04/customers.json")
setCustomers(await customersData)
console.log(customers)
}
useEffect(() => {
getCustomers();
}, [])