Untitled
unknown
plain_text
4 years ago
279 B
9
Indexable
useEffect(async () => {
try {
const response = await fetch(`https://www.testwebsite.com/response.json`);
const json = await response.json();
setPosts(json.data.children.map(it => it.data));
} catch (e) {
console.error(e);
}
});Editor is loading...