"use client" import { ExamViewer } from "@/modules/exams/components/exam-viewer" import { ScrollArea } from "@/shared/components/ui/scroll-area" export function HomeworkAssignmentExamPreviewPane({ structure, questions, selectedQuestionId, onQuestionSelect, }: { structure: unknown questions: Array<{ questionId: string questionType: string questionContent: unknown maxScore: number }> selectedQuestionId: string | null onQuestionSelect: (questionId: string) => void }) { return (
Question Preview
) }