416de42de070a9d312afa0a3b858c1927f55ebb1
[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
9 export const register = (pluginConfig: PluginConfig) => {
10
11     pluginConfig.centerPanelList.push((elms) => []);
12
13     pluginConfig.sidePanelCategories.push((cats: string[]): string[] => []);
14 };