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