/** * EmptyState Component * Display message when no results found */ import styles from './EmptyState.module.css'; interface EmptyStateProps { title: string; message: string; action?: { label: string; onClick: () => void; }; } export function EmptyState({ title, message, action }: EmptyStateProps) { return (

{title}

{message}

{action && ( )}
); }