/* * Contact Page * Not the Homepage. * * Dependencies: * styles/components/_page--style-contact.scss * * Version: * 1.0.0 - 2018/03/03 */ import React from 'react'; import Page from './../Page'; import PhoneSection from './../sections/PhoneSection'; import BodySection from './../sections/BodySection'; import ContactForm from './../forms/ContactForm'; class ContactPage extends React.Component { constructor(props) { super(props); } render() { return (

Contact

Want to get ahold of me and other lorem ipsum dolor?

) } } export default ContactPage;