1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+nodes/nodes.route.ts
Jari Kolehmainen 8a7b4be0d5 use import aliases for better readability
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2021-01-24 14:47:34 +02:00

12 lines
271 B
TypeScript

import type { RouteProps } from "react-router";
import { buildURL } from "@common/utils/buildUrl";
export const nodesRoute: RouteProps = {
path: "/nodes"
};
export interface INodesRouteParams {
}
export const nodesURL = buildURL<INodesRouteParams>(nodesRoute.path);