presentation zoom and legal info

This commit is contained in:
2020-04-01 15:52:21 +02:00
committed by smuddy
parent 797b585395
commit b8fbcb4b9a
11 changed files with 111 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
import {Component, Input} from '@angular/core';
import {Song} from '../../../songs/services/song';
@Component({
selector: 'app-legal',
templateUrl: './legal.component.html',
styleUrls: ['./legal.component.less']
})
export class LegalComponent {
@Input() public song: Song;
}