`Is it possible to dynamically render an Angular component? I have the component selector names stored in my .ts file. However, when attempting to bind the variable in the .html file using interpolation and innerHTML, the component fails to render. What can be done to achieve this?
Here is the structure of my component selectors:
<app-assessmentitem>
<app-responsedeclaration>
<app-correct-response>
</app-correct-response>
</app-responsedeclaration>
</app-assessmentitem>
I am looking for a way to dynamically render Angular components using Selectors.`