import QuizAnswerer from "@/components/QuizAnswerer"; import { Dialog } from "@mui/material"; interface Props { open?: boolean; quizId: string; onClose?: () => void; } export default function QuizDialog({ open = true, quizId, onClose }: Props) { return ( ); }