import React from 'react'; interface InputProps { value: string; onChange: (value: string) => void; placeholder?: string; } export const Input: React.FC = ({ value, onChange, placeholder }) => { return ( onChange(e.target.value)} placeholder={placeholder} /> ); };