"use client"; import { notFound } from "next/navigation"; import { useProblem } from "@/hooks/use-problem"; import MdxPreview from "@/components/mdx-preview"; import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; export default function DescriptionPage() { const { problem } = useProblem(); if (!problem) { notFound(); } return (
); }