@talend/react-components
Version:
Set of react components.
20 lines (19 loc) • 670 B
JavaScript
import { defaultColumnConfiguration } from '../Content.component';
import CellCheckbox from './CellCheckbox.component';
import { jsx as _jsx } from "react/jsx-runtime";
export const cellType = 'checkbox';
export const checkboxColumnConfiguration = {
cellRenderer: props => /*#__PURE__*/_jsx(CellCheckbox, {
...props
})
};
// this is a fake component to be usable in JSX,
// but the element is used as props object internally (VirtualizedList / RV)
export default function CheckboxColumn() {
return null;
}
CheckboxColumn.defaultProps = {
...defaultColumnConfiguration,
...checkboxColumnConfiguration
};
//# sourceMappingURL=CheckboxColumn.component.js.map