You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
491 B
22 lines
491 B
2 years ago
|
import InternalCard from './Card';
|
||
7 years ago
|
import Grid from './Grid';
|
||
7 years ago
|
import Meta from './Meta';
|
||
5 years ago
|
|
||
2 years ago
|
export type { CardProps, CardTabListType } from './Card';
|
||
|
export type { CardGridProps } from './Grid';
|
||
|
export type { CardMetaProps } from './Meta';
|
||
7 years ago
|
|
||
3 years ago
|
type InternalCardType = typeof InternalCard;
|
||
7 years ago
|
|
||
3 years ago
|
export interface CardInterface extends InternalCardType {
|
||
5 years ago
|
Grid: typeof Grid;
|
||
|
Meta: typeof Meta;
|
||
|
}
|
||
5 years ago
|
|
||
3 years ago
|
const Card = InternalCard as CardInterface;
|
||
5 years ago
|
|
||
|
Card.Grid = Grid;
|
||
|
Card.Meta = Meta;
|
||
|
|
||
|
export default Card;
|