Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Achyuth4
/
LibreChat
like
0
Running
App
Files
Files
Community
c071062
LibreChat
/
client
/
src
/
store
/
language.ts
N.Achyuth Reddy
Upload 683 files
9705b6c
almost 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
{ atom }
from
'recoil'
;
const
lang =
atom
({
key
:
'lang'
,
default
:
localStorage
.
getItem
(
'lang'
) ||
'en-US'
,
});
export
default
{ lang };