Added contact form to application. Sends requests through EmailJS.
This commit is contained in:
14
src/pages/Contact.js
Normal file
14
src/pages/Contact.js
Normal 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;
|
||||
Reference in New Issue
Block a user