import React, { FC, HTMLAttributes } from 'react'; import classname from 'classnames'; export interface GridListProps extends HTMLAttributes { /** Classi aggiuntive da usare per il componente LinkListItem */ className?: string; testId?: string; } export const GridList: FC = ({ className, children, testId, ...attributes }) => { const classes = classname('it-grid-list-wrapper', className); return (
{children}
); };