import { ContactManager } from './components/contact-manager'; import { getContactMoments } from '../actions'; export default async function IntakeContactsPage({ params, }: { params: Promise<{ id: string; intakeId: string }>; }) { const { id, intakeId } = await params; const contacts = await getContactMoments(intakeId); return (

Contactmomenten

Registreer gesprekken, telefoontjes en andere contactmomenten.

); }