Blame view

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