Closed Seanahamilton closed 3 months ago
Hi
When you use <app-builder></app-builder>
, the BuilderComponent
will be fixed to that position in your template. If you intend to make it part of the routing system, replace it with a <router-outlet>
tag. This way, the component can be loaded dynamically based on the route configuration.
Adding the following code to
dashboard.component.html
results in none of the widgets being displayed - and only the builder component:I've made sure that
dashboard.module.ts
importsBuilderModule
andBuilderModule
exportsBuilderComponent
.I'm not sure where the issue is coming from. Any help appreciated.