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