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

* make children prop of RadioGroupProps optional

* change children prop of TableProps to React.ReactNode
This commit is contained in:
ChrisF 2017-11-26 20:53:55 -06:00 committed by Wei Zhu
parent 1662710acd
commit cd7a04a069

View File

@ -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;
}