Merge branch '19177-sharing-urls-ui-config'. Closes #19177
[arvados-workbench2.git] / src / common / plugintypes.ts
index a87b0a867ce8693884887353b6428cb50822a40b..da6e80592ae4da852a6afd4abadc1dee7d23883e 100644 (file)
@@ -2,12 +2,12 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import * as React from 'react';
+import React from 'react';
 import { Dispatch, Middleware } from 'redux';
-import { RootStore, RootState } from '~/store/store';
-import { ResourcesState } from '~/store/resources/resources';
+import { RootStore, RootState } from 'store/store';
+import { ResourcesState } from 'store/resources/resources';
 import { Location } from 'history';
-import { ServiceRepository } from "~/services/services";
+import { ServiceRepository } from "services/services";
 
 export type ElementListReducer = (startingList: React.ReactElement[], itemClass?: string) => React.ReactElement[];
 export type CategoriesListReducer = (startingList: string[]) => string[];
@@ -18,7 +18,7 @@ export type MiddlewareListReducer = (startingList: Middleware[], services: Servi
 
 /* Workbench Plugin API
 
-   Code to your plugin should go into a subdirectory of '~/plugins'.
+   Code to your plugin should go into a subdirectory of 'plugins/'.
 
    Your plugin should implement a "register" function, which will be
    called with an object with the PluginConfig interface described