7 lines
No EOL
209 B
TypeScript
7 lines
No EOL
209 B
TypeScript
import useSWR from "swr";
|
|
import type { Document } from "dbtype/api";
|
|
import { fetcher } from "./fetcher";
|
|
|
|
export function useGalleryDoc(id: string) {
|
|
return useSWR<Document>(`/api/doc/${id}`, fetcher);
|
|
} |