Files
wgenerator/src/app/modules/presentation/monitor/legal/legal.component.ts
2025-01-05 10:29:29 +01:00

16 lines
456 B
TypeScript

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