15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-popup-update-advertiser',
|
|
templateUrl: './popup-update-advertiser.component.html',
|
|
styleUrls: ['./popup-update-advertiser.component.scss']
|
|
})
|
|
export class PopupUpdateAdvertiserComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|