Menu.tsx 524 B

12345678910111213141516
  1. // Copyright 2017-2020 @polkadot/react-components authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. import SUIDivider from 'semantic-ui-react/dist/commonjs/elements/Divider/Divider';
  5. import SUIMenu from 'semantic-ui-react/dist/commonjs/collections/Menu/Menu';
  6. type MenuDef = typeof SUIMenu & {
  7. Divider: typeof SUIDivider;
  8. };
  9. const Menu: MenuDef = SUIMenu as MenuDef;
  10. Menu.Divider = SUIDivider;
  11. export default Menu;