17 lines
578 B
TypeScript
17 lines
578 B
TypeScript
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 AddClientParams = { realm: string };
|
|
|
|
export const AddClientRoute: RouteDef = {
|
|
path: "/:realm/clients/add-client",
|
|
component: lazy(() => import("../add/NewClientForm")),
|
|
breadcrumb: (t) => t("clients:createClient"),
|
|
access: "manage-clients",
|
|
};
|
|
|
|
export const toAddClient = (params: AddClientParams): Partial<Path> => ({
|
|
pathname: generatePath(AddClientRoute.path, params),
|
|
});
|