QuestionCard.tsx
344 bytes
| 1 | interface QuestionCardProps { |
|---|---|
| 2 | question: string | null |
| 3 | } |
| 4 | |
| 5 | export function QuestionCard({ question }: QuestionCardProps) { |
| 6 | return ( |
| 7 | <div className="question" key={question ?? 'intro'} aria-live="polite" aria-atomic="true"> |
| 8 | <p className="question-text">{question ?? 'Tell me about the thing you want to build.'}</p> |
| 9 | </div> |
| 10 | ) |
| 11 | } |
| 12 | |