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