antd-mobile
Version:
基于 React 的移动设计规范实现
12 lines (11 loc) • 325 B
TypeScript
import * as React from 'react';
import NoticeBarProps from './NoticeBarPropsType';
export default class NoticeBar extends React.Component<NoticeBarProps, any> {
static defaultProps: {
mode: string;
onClick(): void;
};
constructor(props: any);
onClick: () => void;
render(): JSX.Element;
}