0 votes
in Angular by
What happens if I import the same module twice?

1 Answer

0 votes
by

If multiple modules imports the same module then angular evaluates it only once (When it encounters the module first time). It follows this condition even the module appears at any level in a hierarchy of imported NgModules.

...