import { Record as Gallery } from "$lexicon/types/social/grain/gallery.ts"; import { GalleryView } from "$lexicon/types/social/grain/gallery/defs.ts"; import { Button } from "./Button.tsx"; import { Dialog } from "./Dialog.tsx"; import { Input } from "./Input.tsx"; import { Label } from "./Label.tsx"; import { Textarea } from "./Textarea.tsx"; export function GalleryDetailsDialog({ gallery, }: Readonly<{ gallery?: GalleryView | null }>) { return ( {gallery ? "Edit details" : "Create a new gallery"}
); }