30 lines
1.6 KiB
JavaScript
30 lines
1.6 KiB
JavaScript
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
import { Component } from 'react';
|
|
|
|
var OptGroup =
|
|
/*#__PURE__*/
|
|
function (_Component) {
|
|
_inherits(OptGroup, _Component);
|
|
|
|
function OptGroup() {
|
|
_classCallCheck(this, OptGroup);
|
|
|
|
return _possibleConstructorReturn(this, _getPrototypeOf(OptGroup).apply(this, arguments));
|
|
}
|
|
|
|
return OptGroup;
|
|
}(Component);
|
|
|
|
export { OptGroup as default };
|
|
OptGroup.isSelectOptGroup = true; |