/* * SPDX-FileCopyrightText: 2026 Coffey Labs * * SPDX-License-Identifier: AGPL-3.0-only */ import type { ReactNode } from 'react'; import inbuxaMark from '@/assets/inbuxa-mark.png'; /** Nothing to show yet: the cat, a line saying so, and what to do about it. */ export function EmptyState({ title, hint, action }: { title: ReactNode; hint?: ReactNode; action?: ReactNode }) { return (

{title}

{hint &&

{hint}

} {action &&
{action}
}
); }