暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NewConnection.js 800B

123456789101112131415161718192021222324
  1. import React from 'react'
  2. function NewConnection() {
  3. return (
  4. <div className="col-xl-12 col-lg-12">
  5. {/* </div> <div className="col-xl-6 col-lg-6"> */}
  6. <div className="card">
  7. <div className="card-body">
  8. <div className='d-flex flex-column align-items-center'>
  9. <div className='water-connection'>
  10. <img src='./images/kerala/tap.jpg' className='w-100 h-100' />
  11. </div>
  12. <div className='d-flex flex-column pt-3'>
  13. <span className='text-dark' style={{fontSize:'20px'}}> </span>
  14. <button className="btn bg-primary br-btn">Click here for new Connection</button>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. )
  21. }
  22. export default NewConnection