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

@@ -0,0 +1,15 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { ChannellistComponent } from './channellist/channellist.component';
const routes: Routes = [
{ path: '', redirectTo: 'channel', pathMatch: 'full' },
{ path: 'channel', component: ChannellistComponent },
{ path: '**', redirectTo: 'channel' }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }