How to call same API multiple time with different JSON data – Reactjs
I am writing a simple react page where user details can be fetched from one API and pass it to another API multiple times with some modification. export default function User() { const [userid, setUserId] = useState(""); const [userData, setUserData]…