Initial Commit

This commit is contained in:
2018-07-05 18:06:27 -04:00
parent 16dd95cec4
commit f906e9f67a
17 changed files with 310 additions and 30 deletions

View File

@@ -2,15 +2,22 @@ import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ChannellistComponent } from './channellist/channellist.component';
import { AppRoutingModule } from './app-routing.module';
import { GetDataService } from './services/get-data.service';
import { HttpClientModule } from '@angular/common/http';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
declarations: [
AppComponent,
ChannellistComponent
],
imports: [
BrowserModule,
HttpClientModule,
AppRoutingModule
],
providers: [GetDataService],
bootstrap: [AppComponent]
})
export class AppModule { }