UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

12 lines (11 loc) 307 B
import { Component } from 'react'; import { ViewComponentProps } from '../core/ViewComponent'; export interface OptionProps extends ViewComponentProps { /** * 选项值 */ value?: any; } export default class Option extends Component<OptionProps, any> { static __PRO_OPTION: boolean; }