Skip to content

Instantly share code, notes, and snippets.

/*eslint-disable no-alert */
import React from "react"
import ReactDOM from "react-dom"
import PropTypes from "prop-types"
class Form extends React.Component {
static childContextTypes = {
form: PropTypes.shape({
submit: PropTypes.func.isRequired,
inputChange: PropTypes.func.isRequired,