feat: context menu actions (#414)

* refactor: abstract copy to clipboard logic

* feat: add actions to <EventBlock> context menu
This commit is contained in:
Carlos Valente
2023-05-26 13:18:56 +02:00
committed by GitHub
parent 82ac8f1ba5
commit 430c636faa
3 changed files with 21 additions and 7 deletions
@@ -0,0 +1,4 @@
// we need to this as a promise because safari
export default async function copyToClipboard(text: string) {
setTimeout(async () => await navigator.clipboard.writeText(text));
}