Skip to content

Commit 88d6a04

Browse files
authored
chore: adjust example page route (#174)
1 parent 8f9257e commit 88d6a04

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/src/routing/route-map.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const routeMap: Map<TRoute, TRouteData> = new Map([
125125
},
126126
],
127127
[
128-
routes.PasswordInput,
128+
routes.TabListUtilities,
129129
{
130130
label: "Tablist utilities",
131131
element: <FluentUiTabStylesPage />,

examples/src/routing/routes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const routes = {
77
TableUtilities: "/table-utilities",
88
Slider: "/slider",
99
PasswordInput: "/password-input",
10+
TabListUtilities: "/tab-list-utilities",
1011
} as const;
1112

12-
export type TRoute = typeof routes[keyof typeof routes];
13+
export type TRoute = (typeof routes)[keyof typeof routes];

0 commit comments

Comments
 (0)