promocion.component.ts
368 Bytes
import { Component, OnInit } from '@angular/core';
import { BsModalRef } from 'ngx-bootstrap/modal';
@Component({
selector: 'app-promocion',
templateUrl: './promocion.component.html',
styleUrls: ['./promocion.component.scss']
})
export class PromocionComponent implements OnInit {
constructor(
public modalRef: BsModalRef,
) { }
ngOnInit() {
}
}