import { getKindcheck } from '../actions'; import { KindcheckForm } from './components/kindcheck-form'; export default async function IntakeKindcheckPage({ params, }: { params: Promise<{ id: string; intakeId: string }>; }) { const { id, intakeId } = await params; const data = await getKindcheck(intakeId); return (

Kindcheck

Registreer aanwezigheid van kinderen, zorgen en ondernomen acties.

); }