Dashboard sipadu mbip
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829
  1. import _inheritsLoose from "@babel/runtime/helpers/esm/inheritsLoose";
  2. import React from 'react';
  3. import TabContainer from './TabContainer';
  4. import TabContent from './TabContent';
  5. import TabPane from './TabPane';
  6. /* eslint-disable react/require-render-return, react/no-unused-prop-types */
  7. var Tab =
  8. /*#__PURE__*/
  9. function (_React$Component) {
  10. _inheritsLoose(Tab, _React$Component);
  11. function Tab() {
  12. return _React$Component.apply(this, arguments) || this;
  13. }
  14. var _proto = Tab.prototype;
  15. _proto.render = function render() {
  16. throw new Error('ReactBootstrap: The `Tab` component is not meant to be rendered! ' + "It's an abstract component that is only valid as a direct Child of the `Tabs` Component. " + 'For custom tabs components use TabPane and TabsContainer directly');
  17. };
  18. return Tab;
  19. }(React.Component);
  20. Tab.Container = TabContainer;
  21. Tab.Content = TabContent;
  22. Tab.Pane = TabPane;
  23. export default Tab;