What is a bootstrapped component?
A bootstrapped component is an entry component that Angular loads into the DOM during the bootstrap process or application launch time. Generally, this bootstrapped or root component is named as AppComponent
in your root module using bootstrap
property as below.
@NgModule({declarations: [AppComponent],imports: [BrowserModule,FormsModule,HttpClientModule,AppRoutingModule],providers: [],bootstrap: [AppComponent] // bootstrapped entry component need to be declared here})
June 29, 2022
296
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular