interface VocabChoiceTestProps { currentCard: any quizOptions: string[] selectedAnswer: string | null showResult: boolean onAnswer: (answer: string) => void onReportError: () => void onNavigate: (direction: string) => void currentCardIndex: number totalCards: number } export const VocabChoiceTest: React.FC = (props) => { return (

VocabChoiceTest 測驗組件

詞卡: {props.currentCard?.word}

{props.quizOptions.map((option, index) => ( ))}
) }