mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
import type { RouteProps } from "react-router";
|
|
import { buildURL } from "../../../common/utils/buildUrl";
|
|
|
|
export interface EntitySettingsRouteParams {
|
|
entityId: string;
|
|
}
|
|
|
|
export const entitySettingsRoute: RouteProps = {
|
|
path: `/entity/:entityId/settings`,
|
|
};
|
|
|
|
export const entitySettingsURL = buildURL<EntitySettingsRouteParams>(entitySettingsRoute.path);
|