In Angular, how do you make a reusable component that takes a string as input and renders it as a template dynamically during run time?
It should instantiate Angular components that appear in the markup, and it must be possible to have several of this component on the same page.
The purpose of such a component would be to be able to load the structure of pages from a back end database.
Is it feasible? And if so, how do you go about it?