Connect all CRM pages to the BFF and CRM service, add module docs, and mark CRM available in the SuperApp catalog. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
"use client";
|
|
|
|
import { Breadcrumbs } from "@/components/ds";
|
|
|
|
export function CrmBreadcrumbs({
|
|
items,
|
|
}: {
|
|
items: { label: string; href?: string }[];
|
|
}) {
|
|
return (
|
|
<div className="mb-4">
|
|
<Breadcrumbs items={[{ label: "CRM", href: "/crm/hub" }, ...items]} />
|
|
</div>
|
|
);
|
|
}
|