import React from "react"; interface InputProps { id: string; onChange: any; value: string; label: string; type?: string; } const Input: React.FC = ({ id, onChange, value, label, type }) => { return (
) } export default Input;