Files
triqura-ecd/app/epd/patients/[id]/layout.tsx
2025-11-23 10:13:00 +01:00

12 lines
208 B
TypeScript

export default async function PatientDetailLayout({
children,
params,
}: {
children: React.ReactNode;
params: Promise<{ id: string }>;
}) {
const { id } = await params;
return <>{children}</>;
}