Files
ebcb5434-7612-4fa8-8b65-e4b…/src/routes.ts
2026-07-02 08:42:44 +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' },
];