2017-01-27 03:20:51 -05:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { MdToolbarModule } from '@angular/material/toolbar';
|
2017-02-02 15:10:47 -05:00
|
|
|
import { MdButtonModule} from '@angular/material/button';
|
2017-02-03 02:02:23 -05:00
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
2017-02-02 15:10:47 -05:00
|
|
|
import { DocViewerComponent } from './doc-viewer/doc-viewer.component';
|
2017-02-03 02:02:23 -05:00
|
|
|
import { NavEngine } from './nav-engine/nav-engine.service';
|
|
|
|
import { NavLinkDirective } from './nav-engine/nav-link.directive';
|
2017-01-27 03:20:51 -05:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
MdToolbarModule.forRoot(),
|
2017-02-02 15:10:47 -05:00
|
|
|
MdButtonModule.forRoot()
|
2017-01-27 03:20:51 -05:00
|
|
|
],
|
2017-02-03 02:02:23 -05:00
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
DocViewerComponent,
|
|
|
|
NavLinkDirective
|
|
|
|
],
|
2017-02-02 15:10:47 -05:00
|
|
|
providers: [NavEngine],
|
2017-01-27 03:20:51 -05:00
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|