import { Event } from "@prisma/client"; import useSWR, { SWRResponse } from "swr"; export function useMyEvents(): SWRResponse { return useSWR("/api/events/mine") }