import React from 'react'; import { Col, Row } from 'react-bootstrap'; import './Contact.css'; import contactImg from '../../../Assets/contact.svg'; // import swal from 'sweetalert' import Fade from 'react-reveal/Fade'; const Contact = () => { const handleSubmit = event => { event.preventDefault(); event.target.reset(); // swal("Thank You!", "We appreciate you contacting us!", "success"); } return (

CONTACT US

GET IN TOUCH
); }; export default Contact;