15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
import ContactForm from '../components/ContactForm.js'
|
||
|
|
||
|
class Contact extends Component {
|
||
|
componentDidMount() {
|
||
|
document.title = 'Marten Tracker | Contact';
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return <ContactForm />;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Contact;
|