mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-21 12:01:49 +02:00
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-entry-listing',
|
|
templateUrl: './entry-listing.component.html',
|
|
styleUrls: ['./entry-listing.component.scss']
|
|
})
|
|
export class EntryListingComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|