Files
bookstore-angular/store-front/src/app/app.module.ts
2017-03-06 16:37:44 -05:00

35 lines
842 B
TypeScript

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { MaterialModule } from '@angular/material';
import { routing } from './app.routing';
import 'hammerjs';
import { AppComponent } from './app.component';
import { HomeComponent } from './components/home/home.component';
import { NavBarComponent } from './components/nav-bar/nav-bar.component';
import { LoginService } from './services/login.service';
@NgModule({
declarations: [
AppComponent,
HomeComponent,
NavBarComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
routing,
MaterialModule
],
providers: [
LoginService
],
bootstrap: [AppComponent]
})
export class AppModule { }