12 lines
208 B
TypeScript
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}</>;
|
|
}
|