import { ImageCollageComponent } from '../image'; export const CardCollageComponent = () => { const tags = [ { id: 1, name: 'Nature', }, { id: 2, name: 'Wallpaper', }, { id: 3, name: 'Fog', }, ]; return ( <>

Forest

32 photos •{' '} By John Doe

    {tags.map(({ id, name }) => (
  • ))}
); };