mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
34 lines
808 B
TypeScript
34 lines
808 B
TypeScript
|
import { useTranslation } from 'react-i18next'
|
||
|
import { Row, Col } from 'react-bootstrap'
|
||
|
import EmailCell from './cell'
|
||
|
|
||
|
function Header() {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Row>
|
||
|
<Col sm={5} className="hidden-xs">
|
||
|
<EmailCell>
|
||
|
<strong>{t('email')}</strong>
|
||
|
</EmailCell>
|
||
|
</Col>
|
||
|
<Col sm={5} className="hidden-xs">
|
||
|
<EmailCell>
|
||
|
<strong>{t('institution_and_role')}</strong>
|
||
|
</EmailCell>
|
||
|
</Col>
|
||
|
<Col sm={2} className="hidden-xs">
|
||
|
<EmailCell>
|
||
|
<strong>todo</strong>
|
||
|
</EmailCell>
|
||
|
</Col>
|
||
|
</Row>
|
||
|
<div className="hidden-xs horizontal-divider" />
|
||
|
<div className="hidden-xs horizontal-divider" />
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Header
|