Skip to content

Instantly share code, notes, and snippets.

@clc80
Created June 4, 2018 14:42
Embed
What would you like to do?
blank form
import React, { Component } from 'react';
class Form extends Component {
render() {
return(
<div className="Form">
<h1>Form goes here</h1>
</div>
);
}
}
export default Form;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment