updated comment according to react-virtualized documentation

This commit is contained in:
Mark Perkins
2017-11-01 10:59:39 -06:00
parent c0f617b602
commit b7172b90c4

View File

@@ -96,7 +96,7 @@ export type ColumnProps = {
style?: React.CSSProperties;
/** Flex basis (width) for this column; This value can grow or shrink based on :flexGrow and :flexShrink properties. */
width: number;
/** Optional id for column header */
/** Optional id to set on the column header; used for aria-describedby */
id?: string;
}
export class Column extends Component<ColumnProps> {