import React from 'react'; import styles from '../styles/quiz.module.css'; interface AnswerOptionProps { letter: string; text: string; selected: boolean; onClick: () => void; } export const AnswerOption: React.FC = ({ letter, text, selected, onClick, }) => { return ( ); };