mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5b0c122f5d
List of user emails GitOrigin-RevId: 28a8e405812932ba7ebd8043a4dc9d3c573a68b2
33 lines
808 B
TypeScript
33 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
|