UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

11 lines (10 loc) 321 B
import * as React from 'react'; import { CHAT_LOCALE } from '../../locale/enEN'; import { ruRU } from '../../locale/ruRU'; export const useLocalizationInit = (locale) => { return React.useMemo(() => { return ({ ...(locale === 'ru' ? ruRU : CHAT_LOCALE), }); }, [locale]); };