@talend/react-components
Version:
Set of react components.
20 lines (19 loc) • 643 B
JavaScript
import CellBadge from './CellBadge.component';
import { defaultColumnConfiguration } from '../Content.component';
import { jsx as _jsx } from "react/jsx-runtime";
export const cellType = 'badge';
export const badgeColumnConfiguration = {
cellRenderer: props => /*#__PURE__*/_jsx(CellBadge, {
...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 BadgeColumn() {
return null;
}
BadgeColumn.defaultProps = {
...defaultColumnConfiguration,
...badgeColumnConfiguration
};
//# sourceMappingURL=BadgeColumn.component.js.map