import React from 'react'; import './Input.scss'; type InputProps = { label?: string; placeholder?: string; type: string; onChange?: (e: React.FormEvent) => void; value: any; }; const Input: React.FC = (props: InputProps) => { const { label, type, onChange, value, placeholder } = props; return (
{label}
); }; export default Input;