import * as React from 'react'; export default async function fetch_json(url, setJson) { try { const response = await fetch(url); const json = await response.json(); setJson(json); } catch (error) { console.error(error); }; }