import React from 'react' import PropTypes from 'prop-types'; import classNames from 'classnames'; interface Props { onChange: (e) => void, type: string, name: string, label: string, value: string, } export const Input: React.FC = ({type, name, label, onChange, value }) => { return(
onChange(e)} value={value}/>
) }