Files
hipmi/src/app/dev/event/detail/reject/[id]/layout.tsx
Bagasbanuna02 ca9214d9e0 # Event Join
## feat
- Join event
- kontribusi event
- histoty in progress
### No Issue
2024-01-29 22:03:27 +08:00

12 lines
258 B
TypeScript

import { LayoutEvent_DetailReject } from "@/app_modules/event";
import React from "react";
export default async function Page({
children,
}: {
children: React.ReactNode;
}) {
return <LayoutEvent_DetailReject>{children}</LayoutEvent_DetailReject>;
}