0 votes
in Angular by
Why is not necessary to use entryComponents array every time?

1 Answer

0 votes
by

Most of the time, you don't need to explicity to set entry components in entryComponents array of ngModule decorator. Because angular adds components from both @NgModule.bootstrap and route definitions to entry components automatically.

...