Files
c1ceeeac-1c00-4e22-951e-2b3…/src/routes.ts
2026-06-13 20:37:26 +00:00

11 lines
244 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/minecraft', label: 'Minecraft', pageFile: 'MinecraftPage' },
];