working updates
This commit is contained in:
@@ -1,23 +1,26 @@
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
import {HttpClientModule} from '@angular/common/http';
|
||||
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
import { GamesService } from './games.service';
|
||||
import { GameGridComponent } from './game-grid/game-grid.component';
|
||||
import { AppRoutingModule } from './/app-routing.module';
|
||||
import { ViewCardComponent } from './view-card/view-card.component';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
GameGridComponent
|
||||
GameGridComponent,
|
||||
ViewCardComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
HttpClientModule
|
||||
HttpClientModule,
|
||||
ReactiveFormsModule
|
||||
],
|
||||
providers: [GamesService],
|
||||
bootstrap: [AppComponent]
|
||||
|
||||
Reference in New Issue
Block a user