17426: Add plugin ability to override app bar.
[arvados-workbench2.git] / src / plugins / blank / index.tsx
index 416de42de070a9d312afa0a3b858c1927f55ebb1..9471372d8da79d34d63a96cf564e69de9a7c5ee6 100644 (file)
@@ -5,10 +5,15 @@
 // Example plugin.
 
 import { PluginConfig } from '~/common/plugintypes';
+import * as React from 'react';
 
 export const register = (pluginConfig: PluginConfig) => {
 
     pluginConfig.centerPanelList.push((elms) => []);
 
     pluginConfig.sidePanelCategories.push((cats: string[]): string[] => []);
+
+    pluginConfig.appBarLeft = <span />;
+    pluginConfig.appBarMiddle = <span />;
+    pluginConfig.appBarRight = <span />;
 };