'use client'; import { Intake } from '@/lib/types/intake'; import { IntakeCard } from './intake-card'; import { FileText } from 'lucide-react'; interface IntakeListProps { intakes: Intake[]; patientId: string; isLoading?: boolean; } export function IntakeList({ intakes, patientId, isLoading }: IntakeListProps) { if (isLoading) { return (
Start een nieuwe intake om te beginnen.