change children prop of TableProps to React.ReactNode (#8317)

* make children prop of RadioGroupProps optional

* change children prop of TableProps to React.ReactNode
pull/8324/head
ChrisF 7 years ago committed by Wei Zhu
parent 1662710acd
commit cd7a04a069

@ -104,7 +104,7 @@ export interface TableProps<T> {
bodyStyle?: React.CSSProperties;
className?: string;
style?: React.CSSProperties;
children?: React.ReactChildren;
children?: React.ReactNode;
}
export interface TableStateFilters {
@ -170,6 +170,6 @@ export interface FilterMenuProps<T> {
export interface FilterMenuState {
selectedKeys: string[];
keyPathOfSelectedItem: {[key: string]: string};
keyPathOfSelectedItem: { [key: string]: string };
visible?: boolean;
}

Loading…
Cancel
Save