design-react-kit
Version:
Componenti React per Bootstrap 5
7 lines • 359 B
JavaScript
import React from 'react';
import classname from 'classnames';
export const GridList = ({ className, children, testId, ...attributes }) => {
const classes = classname('it-grid-list-wrapper', className);
return (React.createElement("div", { ...attributes, className: classes, "data-testid": testId }, children));
};
//# sourceMappingURL=GridList.js.map