import { getTitoloTranslation } from "~/lib/annuncio_details"; import CardAnnuncio from "~/components/annuncio_card"; import { useTranslation } from "~/providers/I18nProvider"; import type { AnnuncioRicerca } from "~/server/controllers/annunci.controller"; export const AnnunciGrid = ({ pagedata }: { pagedata: AnnuncioRicerca[] }) => { const { locale } = useTranslation(); return (
{pagedata.map((annuncio) => ( ))}
); };