Files
c0e4ff08-a702-4697-bbcb-a88…/src/routes.ts
2026-06-25 08:05:40 +00:00

10 lines
171 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
];