18834: Unit tests added
[arvados-workbench2.git] / src / views-components / context-menu / actions / copy-to-clipboard-action.tsx
index fffcc19b185fbc7e25b1d7d00bd2ff7cf80d2ccf..a1dc59508944a1701258c1d6b9cc29780426030d 100644 (file)
@@ -2,10 +2,10 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import * as React from "react";
-import * as copy from 'copy-to-clipboard';
+import React from "react";
+import copy from 'copy-to-clipboard';
 import { ListItemIcon, ListItemText, ListItem } from "@material-ui/core";
-import { Link } from "~/components/icon/icon";
+import { Link } from "components/icon/icon";
 import { getClipboardUrl } from "./helpers";
 
 export const CopyToClipboardAction = (props: { href?: any, download?: any, onClick?: () => void, kind?: string, currentCollectionUuid?: string; }) => {