Skip to main content

Posts

Showing posts with the label ComponentFactoryResolver

What Is an EntryComponent in Angular 5, and 4?

EntryComponent of Angular - The entry component is used to define components and created dynamically using the ComponentFactoryResolver. Firstly, Angular creates a component factory for each of the bootstrap components with the help of ComponentFactoryResolver . And then, at run-time, it will use the factories to instantiate the components. You specify an entry component by bootstrapping in the Angular module or you specify an entry component by routing definition. All other root components should be listed in the declarations array. const routes : Routes = [     { path : '' , redirectTo : 'home' , pathMatch : 'full' },     { path : 'login' , component : LoginComponent },     { path : 'dashboard' , component : DasboardComponent },     { path : '**' , redirectTo : 'home' } ]; There are two main kinds of entry components which are following - 1.     ...