import { PhotoView } from "$lexicon/types/social/grain/photo/defs.ts"; import { AtUri } from "@atproto/syntax"; export function PhotoSelectButton({ galleryUri, photo, }: Readonly<{ galleryUri: string; photo: PhotoView; }>) { const galleryRkey = new AtUri(galleryUri).rkey; const photoRkey = new AtUri(photo.uri).rkey; return ( ); }