'use client'; import type { ReactNode } from 'react'; import { EPDHeader } from './epd-header'; import { PatientProvider } from './patient-context'; interface EPDLayoutClientProps { children: ReactNode; } export function EPDLayoutClient({ children }: EPDLayoutClientProps) { return (
{/* Header - Fixed 60px height */} {/* Page Content - Scrollable */}
{children}
); }