app.module.ts 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { AppRoutingModule } from './app-routing.module';
  4. import { AppComponent } from './app.component';
  5. import { MainLayoutComponent } from './layout/main-layout/main-layout.component';
  6. import { FactoryOverviewComponent } from './pages/factory-overview/factory-overview.component';
  7. import { DeviceMonitorComponent } from './pages/device-monitor/device-monitor.component';
  8. import { DeviceManagementComponent } from './pages/device-management/device-management.component';
  9. import { HistoricalDataComponent } from './pages/historical-data/historical-data.component';
  10. import { SystemSettingsComponent } from './pages/system-settings/system-settings.component';
  11. @NgModule({
  12. declarations: [
  13. ],
  14. imports: [
  15. BrowserModule,
  16. AppRoutingModule,
  17. AppComponent,
  18. MainLayoutComponent,
  19. FactoryOverviewComponent,
  20. DeviceMonitorComponent,
  21. DeviceManagementComponent,
  22. HistoricalDataComponent,
  23. SystemSettingsComponent
  24. ],
  25. providers: [],
  26. bootstrap: [AppComponent]
  27. })
  28. export class AppModule { }