mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
|
import { Event } from "@prisma/client";
|
||
|
import { default as useSWR } from "swr";
|
||
|
|
||
|
export function useMyEventsSWR() {
|
||
|
return useSWR<Event[]>("/api/events/mine")
|
||
|
}
|