Files
wgenerator/src/app/modules/presentation/monitor/legal/legal.component.ts
2021-05-21 20:17:26 +02:00

14 lines
371 B
TypeScript

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