tangled mirror of catsky-馃惐 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social
18
fork

Configure Feed

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

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