fleet/frontend/utilities/copy_text.ts
2022-10-25 14:17:32 +01:00

10 lines
307 B
TypeScript

// @ts-nocheck - may need to be reworked
export const stringToClipboard = (string) => {
const { navigator } = global;
return navigator.clipboard.writeText(string);
};
export const COPY_TEXT_SUCCESS = "Text copied to clipboard";
export const COPY_TEXT_ERROR = "Text not copied. Please copy manually.";