ai / client /src /store /language.js
Marco Beretta
LibreChat upload repo
3b6afc0
raw
history blame
No virus
114 Bytes
import { atom } from 'recoil';
const lang = atom({
key: 'lang',
default: 'en',
});
export default { lang };