How to share a component between different components in different modules share the components in the different modules with the shared component.
I have four modules. Module A with component A, Module B with component B, Module C with component C, and Module D with component D. Modules B, C and D each import Module A in order to access component A. But there is an issue, component A needs the respective components that use it. For example component A needs component B when being used by component B.
Is there a way to make it work without making the modules B, C and D each have their own copy of component A?