import { lazy } from "react"; import type { Path } from "react-router-dom"; import { generatePath } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type AddClientParams = { realm: string }; const NewClientForm = lazy(() => import("../add/NewClientForm")); export const AddClientRoute: AppRouteObject = { path: "/:realm/clients/add-client", element: , breadcrumb: (t) => t("createClient"), handle: { access: "manage-clients", }, }; export const toAddClient = (params: AddClientParams): Partial => ({ pathname: generatePath(AddClientRoute.path, params), });