UNPKG

antd-mobile

Version:

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

12 lines (11 loc) 321 B
/// <reference types="react" /> import React from 'react'; import ResultProps from './PropsType'; export default class Result extends React.Component<ResultProps, any> { static defaultProps: { prefixCls: string; buttonType: string; buttonClick: () => void; }; render(): JSX.Element; }