aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/videos.component.ts
blob: 76252afbb25b75d6683f9118de23b31a278cac40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { Component } from '@angular/core';
import { ROUTER_DIRECTIVES } from '@angular/router';

@Component({
    template: '<router-outlet></router-outlet>',
    directives: [ ROUTER_DIRECTIVES ]
})

export class VideosComponent {
}