I'm trying to make a document generation tool in angular and I'm hitting a challenge with how I would allow a user to dynamically create content.
My components I want to create could have arbitrary models and behavior so I don't think I could use a shared component.
The components I'm describing would not exist at compile time.
I see some documentation for rendering dynamic components. However it mentions that you must list the "dynamic" component in entryComponents in the ngModule. which will not work for my scenario.
Is there another mechanism to get this effect?