import { useTranslation } from 'react-i18next' import { Row, Col } from 'react-bootstrap' import EmailCell from './cell' function Header() { const { t } = useTranslation() return ( <> {t('email')} {t('institution_and_role')}
) } export default Header