import { NgModule } from
'@angular/core'
;
import { BrowserModule }
from
'@angular/platform-browser'
;
import { FormsModule } from
'@angular/forms'
;
import { HttpClientModule }
from
'@angular/common/http'
;
import { BrowserAnimationsModule }
from
'@angular/platform-browser/animations'
;
import { AppComponent } from
'./app.component'
;
import { NodeService } from
'./nodeservice'
;
import { TreeModule } from
'primeng/tree'
;
import { ButtonModule } from
'primeng/button'
;
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
TreeModule,
ButtonModule,
HttpClientModule,
FormsModule,
],
declarations: [AppComponent],
bootstrap: [AppComponent],
providers: [NodeService],
})
export class AppModule { }