In Angular , I have two module. Module A and Module B. I have import B module to A module. I need A module component to B module. so , i am imported A module to B. but's showing error.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
The best solution is to avoid using Modules in favor of the Standalone API.
About Modules, if something needs to be shared in multiple Modules, move it to a third dedicated one.