import { ResizableHandle, ResizablePanel, ResizablePanelGroup, } from '../Resizable'; import { SqlCodeEditor } from '../SqlCodeEditor/SqlCodeEditor'; import type { ReactNode } from 'react'; import type { LessonFileType } from '../../lib/course'; import { LessonView } from './LessonView'; import { QuizView } from './QuizView'; type LessonQuizViewProps = { lesson: LessonFileType; children: ReactNode; }; export function LessonQuizView(props: LessonQuizViewProps) { const { children, lesson } = props; return ( {children} ); }