Javascript – i am able to see my data in the console but not on the ui in react.js where ca the problem be?
import { useEffect, useState } from "react"; const useFetch = () => { const [data, setData] = useState(null); const [isPending, setIsPending] = useState(true); const [error, setError] = useState(null); useEffect(() => { const abortCont = new AbortController() setTimeout(() => { fetch('http://localhost:3000/blogs',…