fix: export CardInterface from Card resolves #24864 (#24866)

This commit is contained in:
Pubudu Kodikara 2020-06-09 17:24:59 +05:30 committed by GitHub
parent a9a651ffd5
commit c72c773e67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ export interface CardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 't
tabProps?: TabsProps;
}
interface CardInterface extends React.FC<CardProps> {
export interface CardInterface extends React.FC<CardProps> {
Grid: typeof Grid;
Meta: typeof Meta;
}