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

7 lines
200 B
TypeScript
Raw Normal View History

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