mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import MdxPreview from "@/components/mdx-preview";
|
|
import { DEFAULT_PROBLEM_DESCRIPTION } from "@/config/problem/description";
|
|
|
|
export default function ProblemDescriptionPage() {
|
|
return <MdxPreview source={DEFAULT_PROBLEM_DESCRIPTION} />;
|
|
}
|