Web Platformintermediate
The Web Share API for a native share sheet
export const shareOrCopy = async (data: ShareData) => {
if (!navigator.canShare?.(data)) {
await navigator.clipboard.writeText(data.url ?? data.text ?? "");
return "copied";
}Open the OS-native share sheet on a button click, and fall back to copying the link on browsers — Firefox desktop included — that don't support it.