import React, { Component } from 'react'; import PropTypes from 'prop-types'; import styled from 'react-emotion'; import { Field } from '@storybook/components'; import TypeMap from './types'; const Form = styled('form')({ boxSizing: 'border-box', width: '100%', }); const InvalidType = () => Invalid Type; export default class PropForm extends Component { makeChangeHandler(name, type) { return value => { const change = { name, type, value }; this.props.onFieldChange(change); }; } render() { const { knobs } = this.props; return (
); } } PropForm.displayName = 'PropForm'; PropForm.propTypes = { knobs: PropTypes.arrayOf( PropTypes.shape({ name: PropTypes.string, value: PropTypes.any, }) ).isRequired, onFieldChange: PropTypes.func.isRequired, onFieldClick: PropTypes.func.isRequired, };