So, we have such code to download the application.
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
We import the BrowserModule . But what is a BrowserModule? The Api link does not provide much explanation. Why do we use it. And which modules can we use more than BrowserModule? I want to understand angular2 at a deeper level. That is why ask these questions.
source
share