The app.module has the admin-layout.module.
The admin-layout.module has the parameters.module.
The parameters.module has the soa-date.Component.
But the property.component is in the admin-layout.module
I need to put the <app-soa-date></app-soa-date> selector in the property.component but it gives me an error of app-soa-date is not a known element.
<div class="card-body">
<div *ngIf="showSoaDate">
<app-soa-date></app-soa-date>
</div>
<div *ngIf="showOther">
Other
</div>
</div>
Thank you.
