import { useTranslation } from 'react-i18next' import EmailCell from './cell' import ColWrapper from '@/features/ui/components/bootstrap-5/wrappers/col-wrapper' import RowWrapper from '@/features/ui/components/bootstrap-5/wrappers/row-wrapper' import classnames from 'classnames' import { bsClassName } from '@/features/utils/bootstrap-5' function Header() { const { t } = useTranslation() return ( <> {t('email')} {t('institution_and_role')}
) } export default Header