LibreChat/client/src/store/language.ts

9 lines
114 B
TypeScript
Raw Normal View History

import { atom } from 'recoil';
const lang = atom({
key: 'lang',
default: 'en',
});
export default { lang };