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