10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
// #docregion
|
|
import { RouterConfig } from '@angular/router';
|
|
|
|
import { MovieListComponent } from './movie-list.component';
|
|
|
|
export const routes: RouterConfig = [
|
|
{ path: '', redirectTo: '/movies', pathMatch: 'full' },
|
|
{ path: 'movies', component: MovieListComponent }
|
|
];
|