mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
import type { RouteProps } from "react-router";
|
|
import { buildURL } from "../../../common/utils/buildUrl";
|
|
|
|
export const preferencesRoute: RouteProps = {
|
|
path: "/preferences"
|
|
};
|
|
|
|
export const preferencesURL = buildURL(preferencesRoute.path);
|