import type { FC, Child } from "hono/jsx"; interface EmptyStateProps { message: string; action?: Child; } export const EmptyState: FC = ({ message, action }) => (

{message}

{action &&
{action}
}
);