mirror of
https://github.com/WDI-Ideas/rubix.git
synced 2026-04-28 16:25:49 +00:00
19 lines
394 B
JavaScript
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;
|