LibreChat/client/src/store/index.js
Abner Chou 47e5493744
Feature Localization (i18n) Support (#557)
* init localization

* Update defaul to en

* Fix merge issue and import path.

* Set default to en

* Change jsx to tsx

* Update the password max length string.

* Remove languageContext as using the recoil instead.
2023-07-11 15:55:21 -04:00

23 lines
503 B
JavaScript

import conversation from './conversation';
import conversations from './conversations';
import endpoints from './endpoints';
import user from './user';
import text from './text';
import submission from './submission';
import search from './search';
import preset from './preset';
import token from './token';
import lang from './language';
export default {
...conversation,
...conversations,
...endpoints,
...user,
...text,
...submission,
...search,
...preset,
...token,
...lang
};