@jupyterlab/mainmenu
Version:
JupyterLab - Main Menu
15 lines • 397 B
JavaScript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { RankedMenu } from '@jupyterlab/ui-components';
/**
* An extensible Tabs menu for the application.
*/
export class TabsMenu extends RankedMenu {
/**
* Construct the tabs menu.
*/
constructor(options) {
super(options);
}
}
//# sourceMappingURL=tabs.js.map