import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Form } from '@storybook/components'; import TypeMap from './types'; const InvalidType = () => Invalid Type; export default class PropForm extends Component { makeChangeHandler(name, type) { const { onFieldChange } = this.props; return (value = '') => { const change = { name, type, value }; onFieldChange(change); }; } render() { const { knobs, onFieldClick } = this.props; return (