Files
143b9f70-0e6c-4df2-a011-73e…/src/routes.ts
2026-06-13 21:24:35 +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' },
];