Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DakMak
/
chat-uigl
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ece0c29
chat-uigl
/
src
/
lib
/
utils
/
share.ts
DakMak
Duplicate from coyotte508/chat-ui
ece0c29
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);
}
}