fit-select
Version:
选择框
11 lines (9 loc) • 337 B
TypeScript
import * as React from 'react';
import * as module from './module';
export default class Option extends React.Component<module.PropsInterface, module.StateInterface> {
static defaultProps: module.PropsInterface;
state: module.StateInterface;
componentWillMount(): void;
handleClick(): void;
render(): JSX.Element;
}