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