move match details to its own component

This commit is contained in:
chsakell
2016-09-30 10:51:07 +03:00
parent d0690695b6
commit 63866a2746
9 changed files with 52 additions and 33 deletions

View File

@@ -4,9 +4,10 @@ import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
import { ConfigService } from './shared/config.service';
import { DataService } from './shared/data.service';
import { ConfigService } from './shared/services/config.service';
import { DataService } from './shared/services/data.service';
import { HomeComponent } from './home/home.component';
import { MatchComponent } from './shared/components/match.component';
import { routing } from './app.routes';
@NgModule({
@@ -18,7 +19,8 @@ import { routing } from './app.routes';
],
declarations: [
AppComponent,
HomeComponent
HomeComponent,
MatchComponent
],
bootstrap: [AppComponent],
providers: [