import dynamic from 'next/dynamic'; import Link from 'next/link'; import { ChevronLeft } from 'lucide-react'; const NewIntakeForm = dynamic( () => import('../components/new-intake-form').then((m) => m.NewIntakeForm), { ssr: false, loading: () => } ); function FormSkeleton() { return (
); } interface NewIntakePageProps { params: Promise<{ id: string }>; } export default async function NewIntakePage({ params }: NewIntakePageProps) { const { id } = await params; return (
Terug naar overzicht

Nieuwe Intake Starten

Vul de basisgegevens in om een nieuwe intake te starten.

); }