import { lazy } from "react";
import type { Path } from "react-router-dom";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type UserFederationKerberosParams = {
realm: string;
id: string;
};
const UserFederationKerberosSettings = lazy(
() => import("../UserFederationKerberosSettings")
);
export const UserFederationKerberosRoute: RouteDef = {
path: "/:realm/user-federation/kerberos/:id",
element: ,
breadcrumb: (t) => t("common:settings"),
access: "view-realm",
};
export const toUserFederationKerberos = (
params: UserFederationKerberosParams
): Partial => ({
pathname: generatePath(UserFederationKerberosRoute.path, params),
});