UNPKG

antd-mobile

Version:

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

10 lines (9 loc) 270 B
/// <reference types="react" /> import React from 'react'; import { CardBodyProps } from './PropsType'; export default class CardBody extends React.Component<CardBodyProps, any> { static defaultProps: { prefixCls: string; }; render(): JSX.Element; }