I want to incorporate my own component into an nzmodal. I attempted the following:
<nz-modal
[(nzVisible)]="isVisible"
nzTitle="Create relation"
(nzOnCancel)="handleCancel()"
(nzOnOk)="handleOk()">
<app-label-relation-create>
</app-label-relation-create>
</nz-modal>
Within the label relation create component, there is a form.
Do I need to add a reference in the routing module? Or, is there a simpler way to achieve this?