I have the following code:
<app-device [device]="device">
<app-custom-slide-toggle></app-custom-slide-toggle>
<app-custom-checkbox-list></app-custom-checkbox-list>
</app-device>
How I can show my app-custom-slide-toggle,app-custom-checkbox-list components in a specific location inside my app-device component?
I was reading about loading dynamic components, but couldn't figure how how to make it work in compuond components.
Thanks!