import { AppBreadcrumb, AppContent } from "@repo/rdx-ui/components"; import { Button } from "@repo/shadcn-ui/components"; import { PlusIcon } from "lucide-react"; import { useState } from "react"; import { useNavigate } from "react-router-dom"; import { CustomerInvoicesListGrid } from "../components"; import { useTranslation } from "../i18n"; export const CustomerInvoicesList = () => { const { t } = useTranslation(); const navigate = useNavigate(); const [status, setStatus] = useState("all"); /*const CustomerInvoiceStatuses = [ { value: "all", label: t("customerInvoices.list.tabs.all") }, { value: "draft", label: t("customerInvoices.list.tabs.draft") }, { value: "ready", label: t("customerInvoices.list.tabs.ready") }, { value: "delivered", label: t("customerInvoices.list.tabs.delivered") }, { value: "accepted", label: t("customerInvoices.list.tabs.accepted") }, { value: "rejected", label: t("customerInvoices.list.tabs.rejected") }, { value: "archived", label: t("customerInvoices.list.tabs.archived") }, ];*/ return ( <>

{t("pages.list.title")}

{t("pages.list.description")}

); }; /* return ( <>

{t('customerInvoices.list.title' />

{t('CustomerInvoices.list.subtitle' />

{CustomerInvoiceStatuses.map((s) => ( {s.label} ))}
{CustomerInvoiceStatuses.map((s) => ( ))}
); }; */