2025-02-21 13:06:26 +00:00
|
|
|
import MdxPreview from "@/components/mdx-preview";
|
2025-02-25 06:40:06 +00:00
|
|
|
import { DEFAULT_PROBLEM_DESCRIPTION } from "@/config/problem/description";
|
2025-02-21 13:06:26 +00:00
|
|
|
|
2025-02-24 11:55:17 +00:00
|
|
|
export default function ProblemDescriptionPage() {
|
2025-02-25 06:40:06 +00:00
|
|
|
return <MdxPreview source={DEFAULT_PROBLEM_DESCRIPTION} />;
|
2025-02-21 13:06:26 +00:00
|
|
|
}
|