contacts.jsx 888 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. @author:李霆
  3. @update:2018/05/29
  4. @descript:复制粘贴,拿起来就是干!!
  5. */
  6. import React from 'react';
  7. import './contacts.less';
  8. import{ Row ,Col} from 'antd';
  9. class Contancts extends React.Component{
  10. constructor(props){
  11. super(props);
  12. this.state={
  13. loading:false
  14. }
  15. }
  16. render(){
  17. return (
  18. <div className="contact-wrap">
  19. <Row>
  20. <Col span={4} offset={1}>
  21. <h4>联系人</h4>
  22. </Col>
  23. <Col span={6} offset={8}>
  24. <Button>添加常用联系人</Button>
  25. </Col>
  26. </Row>
  27. <Row>
  28. <Card>
  29. </Card>
  30. </Row>
  31. </div>
  32. )
  33. }
  34. }
  35. export default Contancts;