mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-07-04 17:30:52 +00:00
26 lines
693 B
TypeScript
26 lines
693 B
TypeScript
|
import { Suspense } from "react";
|
||
|
import {
|
||
|
DescriptionContent,
|
||
|
DescriptionContentSkeleton,
|
||
|
} from "@/features/problems/description/components/content";
|
||
|
|
||
|
interface DescriptionPanelProps {
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
const DescriptionPanel = ({ id }: DescriptionPanelProps) => {
|
||
|
return (
|
||
|
<div className="h-full flex flex-col border border-t-0 border-muted rounded-b-3xl bg-background overflow-hidden">
|
||
|
<div className="relative flex-1">
|
||
|
<div className="absolute h-full w-full">
|
||
|
<Suspense fallback={<DescriptionContentSkeleton />}>
|
||
|
<DescriptionContent id={id} />
|
||
|
</Suspense>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export { DescriptionPanel };
|