UNPKG

antd-mobile

Version:

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

13 lines (12 loc) 348 B
import * as React from 'react'; import NoticeBarProps from './NoticeBarPropsType'; export default class NoticeBar extends React.Component<NoticeBarProps, any> { static defaultProps: { prefixCls: string; mode: string; onClick(): void; }; constructor(props: any); onClick(): void; render(): JSX.Element; }