1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+welcome/welcome.route.ts
Jari Kolehmainen 4311f75737 welcome/landing page
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2021-04-27 10:04:06 +03:00

9 lines
228 B
TypeScript

import type { RouteProps } from "react-router";
import { buildURL } from "../../../common/utils/buildUrl";
export const welcomeRoute: RouteProps = {
path: "/welcome"
};
export const welcomeURL = buildURL(welcomeRoute.path);