import { Suspense } from "react"; import { SolutionContent, SolutionContentSkeleton, } from "@/features/problems/solution/components/content"; interface SolutionPanelProps { id: string; } const SolutionPanel = ({ id }: SolutionPanelProps) => { return (
}>
); }; export { SolutionPanel };