10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
export interface Route {
|
|
path: string;
|
|
label: string;
|
|
pageFile: string;
|
|
}
|
|
|
|
export const routes: Route[] = [
|
|
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
|
];
|