UNPKG

@talend/react-components

Version:
20 lines (19 loc) 643 B
import { defaultColumnConfiguration } from '../Content.component'; import CellLabel from './CellLabel.component'; import { jsx as _jsx } from "react/jsx-runtime"; export const cellType = 'label'; export const labelColumnConfiguration = { cellRenderer: props => /*#__PURE__*/_jsx(CellLabel, { ...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 LabelColumn() { return null; } LabelColumn.defaultProps = { ...defaultColumnConfiguration, ...labelColumnConfiguration }; //# sourceMappingURL=LabelColumn.component.js.map