mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
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:
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…
Reference in New Issue
Block a user