Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
BetterAPI
/
BetterChat
like
2
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
1ef0413
BetterChat
/
src
/
lib
/
utils
/
share.ts
BetterAPI
Duplicate from huggingchat/chat-ui
1ef0413
almost 2 years ago
raw
Copy download link
history
blame
Safe
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);
}
}