Merge branch '21128-toolbar-context-menu'
[arvados-workbench2.git] / src / plugins / blank / index.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 // Example plugin.
6
7 import { PluginConfig } from 'common/plugintypes';
8 import React from 'react';
9
10 export const register = (pluginConfig: PluginConfig) => {
11
12     pluginConfig.centerPanelList.push((elms) => []);
13
14     pluginConfig.sidePanelCategories.push((cats: string[]): string[] => []);
15
16     pluginConfig.accountMenuList.push((elms) => []);
17     pluginConfig.newButtonMenuList.push((elms) => []);
18
19     pluginConfig.appBarLeft = <span />;
20     pluginConfig.appBarMiddle = <span />;
21     pluginConfig.appBarRight = <span />;
22 };