app.module.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import { LoginModule } from './login/login.module';
  2. import { PlantsModule } from './plants/plants.module';
  3. import { BrowserModule } from '@angular/platform-browser';
  4. import { NgModule } from '@angular/core';
  5. import { LeafletModule } from '@asymmetrik/ngx-leaflet';
  6. import { AppRoutingModule } from './app-routing.module';
  7. import { CoreModule } from './core/core.module';
  8. import { AppComponent } from './app.component';
  9. import { HomeComponent } from './home/home.component';
  10. import { adminLteConf } from './admin-lte.conf';
  11. import { LayoutModule } from 'angular-admin-lte';
  12. import { LoadingPageModule, MaterialBarModule } from 'angular-loading-page';
  13. import { UtilsModule } from './utils/utils.module';
  14. import { EventsModule } from './events/events.module';
  15. import { FormsModule } from '@angular/forms';
  16. import { PagenotfoundComponent } from './pagenotfound/pagenotfound.component';
  17. @NgModule({
  18. declarations: [
  19. AppComponent,
  20. HomeComponent,
  21. PagenotfoundComponent
  22. ],
  23. imports: [
  24. BrowserModule,
  25. AppRoutingModule,
  26. CoreModule,
  27. FormsModule,
  28. LayoutModule.forRoot(adminLteConf),
  29. LoadingPageModule, MaterialBarModule,
  30. UtilsModule,
  31. PlantsModule,
  32. EventsModule,
  33. LeafletModule.forRoot(),
  34. LoginModule
  35. ],
  36. providers: [],
  37. bootstrap: [AppComponent]
  38. })
  39. export class AppModule { }