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