Files
hipmi/src/app/dev/event/detail/riwayat/[id]/layout.tsx
Bagasbanuna02 c01906c063 # Event Join
## feat
- Join event
- History semua event dan event saya
### No Issuue
2024-01-31 10:48:20 +08:00

15 lines
288 B
TypeScript

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