UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

17 lines (16 loc) 504 B
/// <reference types="react" /> import React from 'react'; import CardHeader from './CardHeader'; import CardBody from './CardBody'; import CardFooter from './CardFooter'; import { CardProps } from './PropsType'; export default class Card extends React.Component<CardProps, any> { static defaultProps: { prefixCls: string; full: boolean; }; static Header: typeof CardHeader; static Body: typeof CardBody; static Footer: typeof CardFooter; render(): JSX.Element; }