Skip to content

Instantly share code, notes, and snippets.

@jacksteamdev
Created April 29, 2021 19:02
Show Gist options
  • Save jacksteamdev/db8b566c4ff2e77de64227cca0a2f706 to your computer and use it in GitHub Desktop.
Save jacksteamdev/db8b566c4ff2e77de64227cca0a2f706 to your computer and use it in GitHub Desktop.
import { writeText } from "./writeText";
import { notify } from "@extend-chrome/notify";
export const notifyCopy = (txt) => {
const btnTitle = "copy again";
return notify.create({
message: `"${txt}" was copied to the clipboard.`,
buttons: [{ title: btnTitle, onClick: () => writeText(txt) }],
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment