mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-18 14:36:13 +00:00
Initial commit
This commit is contained in:
26
node_modules/react-bootstrap/es/Accordion.js
generated
vendored
Normal file
26
node_modules/react-bootstrap/es/Accordion.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import _extends from "@babel/runtime-corejs2/helpers/esm/extends";
|
||||
import _inheritsLoose from "@babel/runtime-corejs2/helpers/esm/inheritsLoose";
|
||||
import React from 'react';
|
||||
import PanelGroup from './PanelGroup';
|
||||
|
||||
var Accordion =
|
||||
/*#__PURE__*/
|
||||
function (_React$Component) {
|
||||
_inheritsLoose(Accordion, _React$Component);
|
||||
|
||||
function Accordion() {
|
||||
return _React$Component.apply(this, arguments) || this;
|
||||
}
|
||||
|
||||
var _proto = Accordion.prototype;
|
||||
|
||||
_proto.render = function render() {
|
||||
return React.createElement(PanelGroup, _extends({}, this.props, {
|
||||
accordion: true
|
||||
}), this.props.children);
|
||||
};
|
||||
|
||||
return Accordion;
|
||||
}(React.Component);
|
||||
|
||||
export default Accordion;
|
||||
Reference in New Issue
Block a user