2018-11-18 06:10:04 +00:00
|
|
|
import React, { Component } from 'react';
|
2018-12-02 00:56:09 +00:00
|
|
|
import ContactForm from '../components/forms/ContactForm.js'
|
2018-11-18 06:10:04 +00:00
|
|
|
|
|
|
|
class Contact extends Component {
|
|
|
|
componentDidMount() {
|
|
|
|
document.title = 'Marten Tracker | Contact';
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <ContactForm />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Contact;
|