type QuestionProps = { label: string; placeholder: string; autoFocus?: boolean; value: string; onChange: (value: string) => void; }; function Question(props: QuestionProps) { const { label, placeholder, value, onChange, autoFocus = false } = props; return (