Skip to content

Commit ef6fede

Browse files
committed
corrected interface to fix compilation errors
1 parent 919bca3 commit ef6fede

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Table/TableContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface TableDataContainerProps
1919
>,
2020
"size" | "overflowMenuOnHover" | "stickyHeader" | "useStaticWidth"
2121
>,
22-
React.TableHTMLAttributes<HTMLTableElement> {
22+
Omit<React.TableHTMLAttributes<HTMLTableElement>, "children"> {
2323
children(signature: any): React.JSX.Element;
2424
size?: TableProps["size"];
2525
}

0 commit comments

Comments
 (0)