16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-etc-blacklist',
|
|
templateUrl: './etc-blacklist.component.html',
|
|
styleUrls: ['./etc-blacklist.component.less']
|
|
})
|
|
export class ETCBlacklistComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|