@talend/react-components
Version:
Set of react components.
22 lines (21 loc) • 690 B
JavaScript
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