sokuree_web_front/src/pages/ContactPage.jsx

11 lines
208 B
JavaScript

import Contact from '../components/Contact';
const ContactPage = () => {
return (
<div style={{ marginTop: '70px' }}>
<Contact />
</div>
);
};
export default ContactPage;