when I try to hit my Giphy API,I don't get any result, don't know where I am wrong, please try to fix my error . If anyone have any doubt free feel to ask.
Get an response like this but I want actual Gif results.
const gifResponse = async()=>{
const result = await fetch("https://api.giphy.com/v1/gifs/trending",{
params:{
api_key:"oatHPgj6zKaAMcxxxxxxxxxxxxxx"
}
});
console.log(result);
}
useEffect(()=>{
gifResponse();
})