1 2 3 4 5 6 7 8
const get = async path => { const url = process.env.BACKEND_API_URL; const resp = await fetch(`${url}${path}`); return await resp.json(); }; export default get;