row.tsx 607 B

12345678910111213141516171819202122232425262728
  1. import { UserEmailData } from '../../../../../../types/user-email'
  2. import { Row, Col } from 'react-bootstrap'
  3. import Email from './email'
  4. import EmailCell from './cell'
  5. type EmailsRowProps = {
  6. userEmailData: UserEmailData
  7. }
  8. function EmailsRow({ userEmailData }: EmailsRowProps) {
  9. return (
  10. <Row>
  11. <Col sm={5}>
  12. <EmailCell>
  13. <Email userEmailData={userEmailData} />
  14. </EmailCell>
  15. </Col>
  16. <Col sm={5}>
  17. <EmailCell>todo</EmailCell>
  18. </Col>
  19. <Col sm={2}>
  20. <EmailCell>todo</EmailCell>
  21. </Col>
  22. </Row>
  23. )
  24. }
  25. export default EmailsRow