fetch in useEffect to create component – Reactjs
How would I go about creating a component using useEffect? useEffect(() => { fetch('https://website') .then((res) => res.json()) .then((data) => { setData(data) // Use fetched data to create object "roles" let cards = roles.map((path) => ( <Box m="sm" pt="xl"> <Card key={path.id}…