ashwinR's picture
Upload 75 files
f332108
raw
history blame contribute delete
222 Bytes
import React from "react";
import ContactMenu from "./ContactMenu"
import "../styles/contact.css";
const Contact = () => {
return (
<>
<ContactMenu />
</>
);
};
export default Contact;