aboutsummaryrefslogtreecommitdiffstats
path: root/src/api.js
blob: c0c62049b7f8652e9a008e7f37ccd1a03e0cf8f2 (plain)
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;