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