import { useTranslation } from 'react-i18next' type LoadingBrandedTypes = { loadProgress: number } export default function LoadingBranded({ loadProgress }: LoadingBrandedTypes) { const { t } = useTranslation() return (
{t('loading')}
) }