Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
ListItemProps.extra should be optional
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
components/list/Item.tsx
|
@@ -9,7 +9,7 @@ export interface ListItemProps { |
|
|
children?: React.ReactNode; |
|
|
prefixCls?: string; |
|
|
style?: React.CSSProperties; |
|
|
extra: React.ReactNode; |
|
|
extra?: React.ReactNode; |
|
|
actions?: Array<React.ReactNode>; |
|
|
grid?: ListGridType; |
|
|
} |
|
|