Duplicated from jdelavande/chat-ui-energy
a0c0a49 ad37578 a0c0a49 ad37578
1
2
3
4
5
6
7
8
export async function share(url: string, title: string) { if (navigator.share) { navigator.share({ url, title }); } else { await navigator.clipboard.writeText(url); } }