feat: 添加日期处理库和日历选择器,更新管理员抽奖模块
This commit is contained in:
8
src/app/admin/(shell)/draws/[drawId]/page.tsx
Normal file
8
src/app/admin/(shell)/draws/[drawId]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { DrawDetailConsole } from "@/modules/draws/draw-detail-console";
|
||||
|
||||
export default async function AdminDrawDetailPage(props: {
|
||||
params: Promise<{ drawId: string }>;
|
||||
}) {
|
||||
const { drawId } = await props.params;
|
||||
return <DrawDetailConsole drawId={drawId} />;
|
||||
}
|
||||
Reference in New Issue
Block a user