1 import { Routes } from '@angular/router';
3 import { VideoAddComponent } from './video-add';
4 import { VideoListComponent } from './video-list';
5 import { VideosComponent } from './videos.component';
6 import { VideoWatchComponent } from './video-watch';
8 export const VideosRoutes: Routes = [
11 component: VideosComponent,
15 component: VideoListComponent
19 component: VideoAddComponent
23 component: VideoWatchComponent