working updates

This commit is contained in:
2018-03-31 17:35:30 -04:00
parent 2a3b0509a8
commit 7ad3c6b93a
12 changed files with 3329 additions and 39 deletions

View File

@@ -2,10 +2,14 @@ import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { GameGridComponent } from './game-grid/game-grid.component'
import { ViewCardComponent } from './view-card/view-card.component'
const routes: Routes = [
{ path: '', redirectTo: '/game-grid', pathMatch: 'full' },
{ path: 'game-grid', component: GameGridComponent }
{ path: 'game-grid', component: GameGridComponent },
{ path: 'view-card', component: ViewCardComponent },
{ path: 'view-card/:gid', component: ViewCardComponent }
];
@NgModule({