Files
8fa635b2-7ab6-42cd-9bfe-1e1…/src/routes.ts
2026-07-02 22:33:01 +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' },
];