'use client'; import { deleteConfirmationTextForPhoto, Photo, titleForPhoto } from '@/photo'; import DeletePhotosButton from './DeletePhotosButton'; import { ComponentProps } from 'react'; export default function DeletePhotoButton({ photo, ...rest }: { photo: Photo } & ComponentProps) { return ( ); }