import PresignedImage from '@/components/PresignedImage' import { type ProductType } from '@/pages/request/type/Types' import { type FC } from 'react' const ServiceItem: FC<{ product: ProductType }> = ({ product }) => { return (
{product.images?.[0] ? ( ) : null}
{product.title}
) } export default ServiceItem