mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-29 13:46:18 +01:00
9 lines
113 B
JavaScript
9 lines
113 B
JavaScript
|
|
import { atom } from 'recoil';
|
||
|
|
|
||
|
|
const lang = atom({
|
||
|
|
key: 'lang',
|
||
|
|
default: 'en'
|
||
|
|
});
|
||
|
|
|
||
|
|
export default { lang };
|