Files
ac314e10-65e5-4641-9658-e7e…/src/routes.ts
2026-06-15 12:28:10 +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' },
];