Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TwanAPI
/
123
like
0
Build error
App
Files
Files
Community
ddc19f8
123
/
src
/
auth.ts
Twan07
Create src/auth.ts
2eae18a
verified
2 months ago
raw
Copy download link
history
blame
Safe
147 Bytes
export
function
setTokens
(
access:
string
) {
localStorage
.
setItem
(
"accessToken"
, access);
}
export
function
logout
(
) {
localStorage
.
clear
();
}