monaco-editor-lsp-next/src/features/problems/analysis/components/panel.tsx

15 lines
409 B
TypeScript
Raw Normal View History

2025-06-21 05:52:34 +00:00
import { PanelLayout } from "@/features/problems/layouts/panel-layout";
import { AnalysisContent } from "@/features/problems/analysis/components/content";
interface AnalysisPanelProps {
submissionId: string | undefined;
}
export const AnalysisPanel = ({ submissionId }: AnalysisPanelProps) => {
return (
<PanelLayout>
<AnalysisContent submissionId={submissionId} />
</PanelLayout>
);
};