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