Added contact form to application. Sends requests through EmailJS.

This commit is contained in:
WildScotsmen
2018-11-18 01:10:04 -05:00
parent 17410d3eec
commit 60e1e5e31f
7 changed files with 278 additions and 4 deletions

14
src/pages/Contact.js Normal file
View File

@@ -0,0 +1,14 @@
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;