mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at switch-session-failure 9 lines 347 B view raw
1import React from 'react' 2import {I18nProvider as DefaultI18nProvider} from '@lingui/react' 3import {i18n} from '@lingui/core' 4import {useLocaleLanguage} from './i18n' 5 6export default function I18nProvider({children}: {children: React.ReactNode}) { 7 useLocaleLanguage() 8 return <DefaultI18nProvider i18n={i18n}>{children}</DefaultI18nProvider> 9}