Within my app.component.ts file, there exists an array containing component tags.
compData = ['app-component-one', 'app-component-two', 'app-component-three'];
Subsequently, in my app.component.html file, the following code is present:
<div *ngFor="let comps of compData">
// Attempting to render {{comps}} individually does not work for rendering components
</div>
What steps should I take to successfully render each individual component?