mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-07-04 01:10:53 +00:00
15 lines
409 B
TypeScript
15 lines
409 B
TypeScript
|
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>
|
||
|
);
|
||
|
};
|