What Happen When I Import The Same Module Twice In Angular 4?
Answer»
No problem! We can IMPORT the same MODULE twice but Angular does not like MODULES with circular references.
So do not let Module “X” import Module “Y” which already imports Module “X”.
When four modules all import Module “X”, Angular ESTIMATE Module “X” once, the first time face it and does not do again. Actually, the modules help us to organize an application into associative blocks of functionality.