Is it feasible in Angular to convert a string into a specific type or component? For instance, if I have the string "ListComponent", could I dynamically add a ListComponent to the application without using mapping techniques?
stringComponent = "ListComponent";
typeComponent = *convert "ListComponent" into ListComponent;
method(typeComponent);