Renacer Social, the app

api.ts 129B

1234
  1. import { API_URL } from "../config";
  2. export const fetcher = (url: string) =>
  3. fetch(`${API_URL}${url}`).then((r) => r.json());