Copying to clipboard
await navigator.clipboard
.writeText(link)
.then(() => {
alert("successfully copied");
})
.catch(() => {
alert("something went wrong");
})
Last updated
Was this helpful?
await navigator.clipboard
.writeText(link)
.then(() => {
alert("successfully copied");
})
.catch(() => {
alert("something went wrong");
})
Last updated
Was this helpful?
Was this helpful?