Files
9527794b-5aa3-49cb-ad65-39c…/src/routes.ts
2026-05-07 19:26:48 +00:00

11 lines
232 B
TypeScript

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