Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. import React from 'react'
  2. import PropTypes from 'prop-types'
  3. import styled from 'styled-components'
  4. import {
  5. Col,
  6. Row,
  7. Input,
  8. Checkbox
  9. } from 'antd'
  10.  
  11.  
  12. const CustomerDetails = ({ customer }) =>
  13. !!Object.keys(customer).length && (
  14. <Container>
  15. <h2>
  16. {/* Name */}
  17. Test Test
  18. </h2>
  19. <Row>
  20. <Col span={8}>
  21. <Ul>
  22. <h3><strong>Primary Contact</strong></h3>
  23. <li>Jane Doe</li>
  24. <li>212-333-3333</li>
  25. </Ul>
  26. </Col>
  27. <Col span={8}>
  28. <Ul>
  29. <h3><strong>Service Address</strong></h3>
  30. <li>1234 Stone Ave N</li>
  31. <li>STE FR6</li>
  32. <li>Seattle, WA 12345</li>
  33. </Ul>
  34. </Col>
  35. <Col span={8}>
  36. <Ul>
  37. <h3><strong>Billing Address</strong></h3>
  38. <li>1234 Stone Ave N</li>
  39. <li>STE FR6</li>
  40. <li>Seattle, WA 12345</li>
  41. </Ul>
  42. </Col>
  43. </Row>
  44. <br />
  45. <Row>
  46. <Col span={10}>
  47. <h4>PRIMARY CONTACT EMAIL</h4>
  48. </Col>
  49. </Row>
  50. <Row>
  51. <Col span={8}>
  52. <StyledInput />
  53. </Col>
  54. <Col span={12}>
  55. <StyledCheckbox /> EMAIL OPT OUT
  56. </Col>
  57. </Row>
  58. <br />
  59. <Row>
  60. <Col>
  61. <StyledCheckbox /> TAX EXEMPT
  62. </Col>
  63. </Row>
  64. <br />
  65. <Row>
  66. <Col>
  67. <h4>GO TO BUNDLE BUILDER</h4>
  68. </Col>
  69. </Row>
  70. </Container>
  71. )
  72.  
  73. CustomerDetails.propTypes = {
  74. customer: PropTypes.object
  75. }
  76.  
  77. CustomerDetails.defaultProps = {
  78. customer: {}
  79. }
  80.  
  81. const Container = styled.div`
  82. margin: 15px 5px;
  83. `
  84. const StyledCheckbox = styled(Checkbox)`
  85.  
  86. `
  87. const StyledInput = styled(Input)`
  88. max-width: 75%;
  89. `
  90. const Ul = styled.ul`
  91. list-style-type: none;
  92.  
  93. li {
  94. font-size: 1rem;
  95. }
  96. `
  97.  
  98. export default CustomerDetails
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement