Files
rubix/src/pages/Contact.jsx
2024-04-17 15:25:04 +05:30

19 lines
394 B
JavaScript

import { useEffect } from "react";
import Form from "../components/Contact/Form";
// eslint-disable-next-line no-unused-vars
import Footer from "../components/Footer/Footer";
const Contact = () => {
useEffect(() => {
// Scroll to the top of the page when the component mounts
window.scrollTo(0, 0);
}, []);
return (
<>
<Form />
</>
);
};
export default Contact;