Initial commit
This commit is contained in:
9
src/routes.ts
Normal file
9
src/routes.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface Route {
|
||||
path: string;
|
||||
label: string;
|
||||
pageFile: string;
|
||||
}
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
];
|
||||
Reference in New Issue
Block a user