antd-mobile
Version:
基于 React 的移动设计规范实现
13 lines (12 loc) • 332 B
TypeScript
import * as React from 'react';
import tsPropsType from './PropsType';
export default class Popover extends React.Component<tsPropsType, any> {
static propTypes: {
children: React.Requireable<any>;
};
static defaultProps: {
onSelect: () => void;
};
static Item: any;
render(): JSX.Element;
}