TV full screen view.

This commit is contained in:
Simon Lindh
2019-07-27 18:43:17 +03:00
parent b561137962
commit 85c4a3480b
14 changed files with 339 additions and 130 deletions

View File

@@ -3,30 +3,42 @@ import { Routes, RouterModule } from '@angular/router';
import { BlockchainComponent } from './blockchain/blockchain.component';
import { AboutComponent } from './about/about.component';
import { StatisticsComponent } from './statistics/statistics.component';
import { TelevisionComponent } from './television/television.component';
import { MasterPageComponent } from './master-page/master-page.component';
const routes: Routes = [
{
path: '',
children: [],
component: BlockchainComponent
component: MasterPageComponent,
children: [
{
path: '',
children: [],
component: BlockchainComponent
},
{
path: 'tx/:id',
children: [],
component: BlockchainComponent
},
{
path: 'about',
children: [],
component: AboutComponent
},
{
path: 'statistics',
component: StatisticsComponent,
},
{
path: 'graphs',
component: StatisticsComponent,
},
],
},
{
path: 'tx/:id',
children: [],
component: BlockchainComponent
},
{
path: 'about',
children: [],
component: AboutComponent
},
{
path: 'statistics',
component: StatisticsComponent,
},
{
path: 'graphs',
component: StatisticsComponent,
path: 'tv',
component: TelevisionComponent,
},
{
path: '**',