When using fetch:
fetch(REQUEST_URL, { method: \'get\', dataType: \'json\', headers: { \'Accept\': \'application/json\',
import React, {useEffect} from 'react'; useEffect(() => { getRecipes(); }, []); const getRecipes = async () => { const response = await fetch( `https://........` ); const data = await response.json(); console.log(data);