Mercurial > hg > ugly-duckling
diff src/app/playback-control/playback-control.component.ts @ 21:d9c0a1ca005c
Prototype some playback controls, and tabbed menus in the sidebar.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 28 Oct 2016 16:27:25 +0100 |
parents | |
children | 6fb6c04878ec |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/app/playback-control/playback-control.component.ts Fri Oct 28 16:27:25 2016 +0100 @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-playback-control', + templateUrl: './playback-control.component.html', + styleUrls: ['./playback-control.component.css'] +}) +export class PlaybackControlComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}