day one build

This commit is contained in:
2018-02-26 23:14:37 -05:00
parent 4196aa268a
commit c425c1542f
38 changed files with 13284 additions and 0 deletions

25
src/app/app.module.ts Normal file
View File

@@ -0,0 +1,25 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {HttpClientModule} from '@angular/common/http';
import { AppComponent } from './app.component';
import { GamesService } from './games.service';
import { GameGridComponent } from './game-grid/game-grid.component';
import { AppRoutingModule } from './/app-routing.module';
@NgModule({
declarations: [
AppComponent,
GameGridComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule
],
providers: [GamesService],
bootstrap: [AppComponent]
})
export class AppModule { }