fit-select
Version:
选择框
11 lines (10 loc) • 417 B
TypeScript
import * as React from 'react';
import * as module from './module';
import './index.scss';
export default class OptGroup extends React.Component<module.PropsInterface, module.StateInterface> {
static defaultProps: module.PropsInterface;
state: module.StateInterface;
handleOptionClick(value: number | string, label: string): void;
setLabelValue(labelValue: string): void;
render(): JSX.Element;
}