/* * Contact Form * Contact form. * * Version: * 1.0.0 - 2018/03/06 */ import React from 'react'; import { Form, InputGroup, TextInput } from './Form'; import Button from './../components/Button'; class ContactForm extends React.Component { constructor(props) { super(props); } render() { return (
); } } export default ContactForm;