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