Blame view

src/app/app.module.ts 393 Bytes
136f52603   lsagona   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import { BrowserModule } from '@angular/platform-browser';
  import { NgModule } from '@angular/core';
  
  import { AppRoutingModule } from './app-routing.module';
  import { AppComponent } from './app.component';
  
  @NgModule({
    declarations: [
      AppComponent
    ],
    imports: [
      BrowserModule,
      AppRoutingModule
    ],
    providers: [],
    bootstrap: [AppComponent]
  })
  export class AppModule { }