This is a hard question to explain.
I have a java framework and I am using my Angular component in.
I have two java jar files that each include an angular application, i.e. main.ts that contains
platformBrowserDynamic().bootstrapModule(AppModule); called twice...
In the above case, I only see one of the angular application, the second one is just an empty html page.
I suspect this is bootstrap question/issue, multiple calls to bootstrapModule and only the first call works.
Does this make any sense? Any explanation or work around?