Skip to content
Snippets Groups Projects
app.module.ts 724 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { NgModule } from '@angular/core';
    
    import { AppRoutingModule } from './app-routing.module';
    
    import { BrowserModule } from '@angular/platform-browser';
    import { FlexLayoutModule } from '@angular/flex-layout';
    
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { AppComponent } from './app.component';
    
    import { HomeComponent } from './home/home.component';
    import { CustomBreakPointsProvider } from './config/custom-breakpoint';
    import { StructureListComponent } from './structure-list/structure-list.component';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    
    @NgModule({
    
      declarations: [AppComponent, HomeComponent, StructureListComponent],
      imports: [BrowserModule, AppRoutingModule, FlexLayoutModule],
      providers: [CustomBreakPointsProvider],
      bootstrap: [AppComponent],
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    })
    
    export class AppModule {}