2022-04-08 07:00:46 -04:00
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { Row, Col } from 'react-bootstrap'
|
|
|
|
import EmailCell from './cell'
|
|
|
|
|
|
|
|
function Header() {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Row>
|
2022-04-22 09:49:26 -04:00
|
|
|
<Col md={4} className="hidden-xs">
|
2022-04-08 07:00:46 -04:00
|
|
|
<EmailCell>
|
|
|
|
<strong>{t('email')}</strong>
|
|
|
|
</EmailCell>
|
|
|
|
</Col>
|
2022-04-22 09:49:26 -04:00
|
|
|
<Col md={8} className="hidden-xs">
|
2022-04-08 07:00:46 -04:00
|
|
|
<EmailCell>
|
|
|
|
<strong>{t('institution_and_role')}</strong>
|
|
|
|
</EmailCell>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<div className="hidden-xs horizontal-divider" />
|
|
|
|
<div className="hidden-xs horizontal-divider" />
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Header
|