import { DEFAULT_NAMESPACE } from '@/core/constants'; import { FlatNamespace, KeyPrefix } from 'i18next'; import { FallbackNs, useTranslation } from 'react-i18next'; import { $Tuple } from 'react-i18next/helpers'; const useAppTranslation = < Ns extends FlatNamespace | $Tuple | undefined = undefined, KPrefix extends KeyPrefix> = undefined, >( keyPrefix?: KPrefix, ) => useTranslation(DEFAULT_NAMESPACE as Ns, { keyPrefix, }); export default useAppTranslation;