| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { LoginModule } from './login/login.module';
- import { PlantsModule } from './plants/plants.module';
- import { BrowserModule } from '@angular/platform-browser';
- import { NgModule } from '@angular/core';
- import { LeafletModule } from '@asymmetrik/ngx-leaflet';
- import { AppRoutingModule } from './app-routing.module';
- import { CoreModule } from './core/core.module';
- import { AppComponent } from './app.component';
- import { HomeComponent } from './home/home.component';
- import { adminLteConf } from './admin-lte.conf';
- import { LayoutModule } from 'angular-admin-lte';
- import { LoadingPageModule, MaterialBarModule } from 'angular-loading-page';
- import { UtilsModule } from './utils/utils.module';
- import { EventsModule } from './events/events.module';
- import { FormsModule } from '@angular/forms';
- import { PagenotfoundComponent } from './pagenotfound/pagenotfound.component';
- @NgModule({
- declarations: [
- AppComponent,
- HomeComponent,
- PagenotfoundComponent
- ],
- imports: [
- BrowserModule,
- AppRoutingModule,
- CoreModule,
- FormsModule,
- LayoutModule.forRoot(adminLteConf),
- LoadingPageModule, MaterialBarModule,
- UtilsModule,
- PlantsModule,
- EventsModule,
- LeafletModule.forRoot(),
- LoginModule
- ],
- providers: [],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
|