I need to covert my Angular 16 project into Angular 17And I used the routing module for lazy loading in Angular 16my Angular 16 code was like this
@NgModule({ declarations: [DashboardComponent], imports: [ CommonModule, RouterModule.forChild([ { path: '', component: DashboardComponent, }, ]), ],})I just need this into Angular 17Thanks in Advance.