Files
hipmi/src/app/dev/(user)/event/edit/[id]/layout.tsx
Bagasbanuna02 6f686b6abf fix: event
- deskripsi:
- fix use server untuk pengambilan userid , sekarang menggunakan API
2025-05-30 17:25:04 +08:00

15 lines
261 B
TypeScript

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