import { Photo, titleForPhoto } from '.';
import ImageSmall from '@/components/ImageSmall';
import Link from 'next/link';
import { cc } from '@/utility/css';
import { pathForPhoto } from '@/site/paths';
export default function PhotoSmall({
photo,
tag,
selected,
}: {
photo: Photo
tag?: string
selected?: boolean
}) {
return (
);
};