interface EmptyStateProps { title: string; description: string; } export function EmptyState({ title, description }: EmptyStateProps) { return (

{title}

{description}

); }