I have appCmponent.ts:
@Routes([
{path: '/login', component: LoginComponent},
{path: '/home', component: HomeComponent},
{path: '/graph', component: GraphComponent},
])
What if I do not want to load GraphComponent and I just want to load the html file inside. Is it possible?
source
share