import { getExaminations } from '../actions'; import { ExaminationManager } from './components/examination-manager'; export default async function IntakeExaminationPage({ params, }: { params: Promise<{ id: string; intakeId: string }>; }) { const { id, intakeId } = await params; const examinations = await getExaminations(intakeId); return (

Onderzoeken

Psychodiagnostiek, medische onderzoeken en rapportage.

); }