Example of simple form made with vanialla React/Redux

May 14, 2017 ยท View on GitHub

import React from 'react'; import PropTypes from 'prop-types';

const FormComponent = ({onChange, firstName, lastName}) =>

;

FormComponent.propTypes = { onChange: PropTypes.func.isRequired, firstName: PropTypes.string.isRequired, lastName: PropTypes.string.isRequired, };

export default FormComponent;