API call

PHOTO EMBED

Thu Jan 06 2022 19:13:51 GMT+0000 (Coordinated Universal Time)

Saved by @patryshka

useEffect(() => {
  fetch("https://jsonplaceholder.typicode.com/posts")
    .then((data) => data.json())
    .then((data) => setTableData(data))
}, [])
 console.log(tableData)
content_copyCOPY