Renacer Social, the app

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