judge4c/src/app/(app)/playground/@problem/@description/page.tsx

7 lines
207 B
TypeScript
Raw Normal View History

import MdxPreview from "@/components/mdx-preview";
import { DEFAULT_PROBLEM } from "@/config/problem";
export default function ProblemDescriptionPage() {
return <MdxPreview source={DEFAULT_PROBLEM} />;
}