useEffect(() => {
fetch(https://jsonplaceholder.typicode.com/posts
)
.then((response) => response.json())
.then((actualData) => console.log(actualData))
.catch((err) => {
console.log(err.message);
});
}, []);
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)