Toaster496's picture
Duplicate from huggingchat/chat-ui
3ea9478
raw
history blame contribute delete
175 Bytes
export function share(url: string, title: string) {
if (navigator.share) {
navigator.share({ url, title });
} else {
prompt("Copy this public url to share:", url);
}
}