import { getScreeningSummary } from './actions'; import { HelpRequestCard } from './components/help-request-card'; import { DecisionCard } from './components/decision-card'; import { ActivityLog } from './components/activity-log'; import { DocumentCard } from './components/document-card'; export default async function ScreeningPage({ params, }: { params: Promise<{ id: string }>; }) { const { id } = await params; const summary = await getScreeningSummary(id); const screening = summary.screening; const hasReferral = summary.documents.some( (doc) => doc.document_type === 'verwijsbrief' ); return (
Activiteitenlog, documenten, hulpvraag en screeningsbesluit