08‐Nested Route - zhamri/stiwk2124-Angular-Route GitHub Wiki
app.routes.ts
{
path: 'courses',
component: Courses,
children: [
{
path: 'stiwk2124',
component: Stiwk2124,
},
{
path: 'stiwk3014',
component: Stiwk3014,
},
]
},
<router-outlet/>
in courses.html
Add <p>course works!</p>
<router-outlet/>