mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-04 15:50:51 +00:00
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import { ProblemEditView } from "@/features/admin/ui/views/problem-edit-view";
|
|
|
|
interface PageProps {
|
|
params: Promise<{ problemId: string }>;
|
|
}
|
|
|
|
const Page = async ({ params }: PageProps) => {
|
|
const { problemId } = await params;
|
|
|
|
return <ProblemEditView problemId={problemId} />;
|
|
};
|
|
|
|
export default Page;
|