interface FlipMemoryTestProps { currentCard: any cardHeight: number isFlipped: boolean onFlip: () => void onReportError: () => void onNavigate: (direction: string) => void currentCardIndex: number totalCards: number cardContainerRef: any cardFrontRef: any cardBackRef: any } export const FlipMemoryTest: React.FC = (props) => { return (

FlipMemoryTest 測驗組件

詞卡: {props.currentCard?.word}

) }