promocion.component.ts 369 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(
    private modalRef: BsModalRef,
  ) { }

  ngOnInit() {
  }

}