import { ReactNode } from 'react' import { client } from 'config/clients' import { getLanguageUrlParam } from 'helpers/languageUrlParam' import { AuthStore } from 'features/AuthStore' import { LexicsStore } from 'features/LexicsStore' const initialLanguage = getLanguageUrlParam() || client.defaultLanguage type Props = { children: ReactNode, } export const GlobalStores = ({ children }: Props) => ( {children} )