2020-03-31 13:47:59 +08:00

28 lines
510 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
/* istanbul ignore file */
/**
* Select.Option
*/
export default class Option extends React.Component {
static propTypes = {
/**
* 选项值
*/
value: PropTypes.any.isRequired,
/**
* 是否禁用
*/
disabled: PropTypes.bool,
children: PropTypes.any,
};
static _typeMark = 'next_select_option';
render() {
return this.props.children;
}
}