UNPKG

@talend/react-components

Version:
22 lines (21 loc) 690 B
import { defaultColumnConfiguration } from '../Content.component'; import CellTitle from './CellTitle.component'; import { jsx as _jsx } from "react/jsx-runtime"; export const cellType = 'title'; export const titleColumnConfiguration = { cellType, cellRenderer: props => /*#__PURE__*/_jsx(CellTitle, { ...props }), className: 'tc-list-title-cell' }; // this is a fake component to be usable in JSX, // but the element is used as props object internally (VirtualizedList / RV) export default function TitleColumn() { return null; } TitleColumn.defaultProps = { ...defaultColumnConfiguration, ...titleColumnConfiguration }; //# sourceMappingURL=TitleColumn.component.js.map