1import type { Routes } from '@angular/router'; 2 3import { Demo } from './demo/demo'; 4 5export const routes: Routes = [ 6 { 7 component: Demo, 8 path: '', 9 pathMatch: 'full', 10 }, 11];