mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 10:03:14 +00:00
5b0c122f5d
List of user emails GitOrigin-RevId: 28a8e405812932ba7ebd8043a4dc9d3c573a68b2
28 lines
607 B
TypeScript
28 lines
607 B
TypeScript
import { UserEmailData } from '../../../../../../types/user-email'
|
|
import { Row, Col } from 'react-bootstrap'
|
|
import Email from './email'
|
|
import EmailCell from './cell'
|
|
|
|
type EmailsRowProps = {
|
|
userEmailData: UserEmailData
|
|
}
|
|
|
|
function EmailsRow({ userEmailData }: EmailsRowProps) {
|
|
return (
|
|
<Row>
|
|
<Col sm={5}>
|
|
<EmailCell>
|
|
<Email userEmailData={userEmailData} />
|
|
</EmailCell>
|
|
</Col>
|
|
<Col sm={5}>
|
|
<EmailCell>todo</EmailCell>
|
|
</Col>
|
|
<Col sm={2}>
|
|
<EmailCell>todo</EmailCell>
|
|
</Col>
|
|
</Row>
|
|
)
|
|
}
|
|
|
|
export default EmailsRow
|