import { NgModule } from "@angular/core"; import { RouterModule } from "@angular/router"; import { TestComponent } from "./test.component"; @NgModule({ imports: [ RouterModule.forChild([ { path: "", component: TestComponent }, ]), ], declarations: [ TestComponent, ], }) export class TestModule { }