import { Inbox } from "lucide-react"; export function EmptyState({ title, body }: { title: string; body?: string }) { return (
{title} {body ?

{body}

: null}
); }