Add shows page and routes
This commit is contained in:
parent
5cf778e390
commit
77c22f70da
5 changed files with 47 additions and 1 deletions
|
|
@ -1,3 +1,14 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import {ShowsComponent} from '../pages/shows/shows.component';
|
||||
|
||||
export const routes: Routes = [];
|
||||
export const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
redirectTo: 'shows',
|
||||
pathMatch: "full"
|
||||
},
|
||||
{
|
||||
path: 'shows',
|
||||
component: ShowsComponent
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue