// components/CustomerSkeleton.tsx import { AppBreadcrumb, AppContent, BackHistoryButton } from "@repo/rdx-ui/components"; import { Button } from "@repo/shadcn-ui/components"; import { useTranslation } from "../i18n"; export const CustomerEditorSkeleton = () => { const { t } = useTranslation(); return ( <> {t("pages.update.submit")} {t("pages.update.loading", "Cargando cliente...")} > ); };