1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-12-23 07:04:22 +00:00
festa/hooks/useMyEvents.ts

7 lines
178 B
TypeScript
Raw Normal View History

2022-06-03 01:55:02 +00:00
import { Event } from "@prisma/client";
import useSWR, { SWRResponse } from "swr";
2022-06-01 03:04:15 +00:00
2022-06-03 01:55:02 +00:00
export function useMyEvents(): SWRResponse<Event[]> {
2022-06-01 03:04:15 +00:00
return useSWR("/api/events/mine")
}