We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b6a875 commit f27ba95Copy full SHA for f27ba95
1 file changed
src/Body/MeasureCell.tsx
@@ -5,9 +5,12 @@ import useLayoutEffect from '@rc-component/util/lib/hooks/useLayoutEffect';
5
export interface MeasureCellProps {
6
columnKey: React.Key;
7
onColumnWidthChange: (key: React.Key, width: number) => void;
8
+ title?: React.ReactNode;
9
}
10
-const MeasureCell: React.FC<MeasureCellProps> = ({ columnKey, onColumnWidthChange }) => {
11
+const MeasureCell: React.FC<MeasureCellProps> = (props) => {
12
+
13
+ const { columnKey, onColumnWidthChange, title } = props;
14
15
const cellRef = React.useRef<HTMLTableCellElement>(null);
16
0 commit comments