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