github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/Decentralized-Energy-Composer-master/angular-app/src/app/app.module.ts (about) 1 import { BrowserModule } from '@angular/platform-browser'; 2 import { NgModule } from '@angular/core'; 3 import { HttpModule } from '@angular/http'; 4 import { FormsModule, ReactiveFormsModule } from '@angular/forms'; 5 import { AppRoutingModule } from './app-routing.module'; 6 import { Configuration } from './configuration'; 7 import { DataService } from './data.service'; 8 import { AppComponent } from './app.component'; 9 import { HomeComponent } from './home/home.component'; 10 import { AboutComponent } from './about/about.component'; 11 12 import { CoinsComponent } from './Coins/Coins.component'; 13 import { EnergyComponent } from './Energy/Energy.component'; 14 import { CashComponent } from './Cash/Cash.component'; 15 16 import { ResidentComponent } from './Resident/Resident.component'; 17 import { BankComponent } from './Bank/Bank.component'; 18 import { UtilityCompanyComponent } from './UtilityCompany/UtilityCompany.component'; 19 20 import { TransactionRRComponent } from './TransactionRR/TransactionRR.component'; 21 import { TransactionRUComponent } from './TransactionRU/TransactionRU.component'; 22 import { TransactionRBComponent } from './TransactionRB/TransactionRB.component'; 23 24 import { AllTransactionsComponent } from './AllTransactions/AllTransactions.component'; 25 26 @NgModule({ 27 declarations: [ 28 AppComponent, 29 HomeComponent, 30 AboutComponent, 31 32 TransactionRRComponent, 33 TransactionRUComponent, 34 TransactionRBComponent, 35 36 AllTransactionsComponent, 37 38 ResidentComponent, 39 BankComponent, 40 UtilityCompanyComponent, 41 42 CoinsComponent, 43 EnergyComponent, 44 CashComponent 45 46 ], 47 imports: [ 48 BrowserModule, 49 FormsModule, 50 ReactiveFormsModule, 51 HttpModule, 52 AppRoutingModule 53 ], 54 providers: [ 55 Configuration, 56 DataService 57 ], 58 bootstrap: [AppComponent] 59 }) 60 export class AppModule { }