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