i m kinda new to this i want to impement this api https://yashraj-n.github.io/zoro-to-api/#typescript
import Zoro from 'zoro-to-api';
import { useEffect,useState } from "react";
export default function Page(){
useEffect(async ()=>{
let zoroResults = await Zoro.zoroSearch("Bleach");
zoroResults = zoroResults.json;
},[])
}
this is the way i trying to use it but its not working correctly please help