You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
349 B

  1. import {Component, Input} from '@angular/core';
  2. import {NgbActiveModal} from "@ng-bootstrap/ng-bootstrap";
  3. @Component({
  4. selector: 'app-modal',
  5. templateUrl: './modal.component.html',
  6. styleUrl: './modal.component.scss'
  7. })
  8. export class ModalComponent {
  9. @Input() dynamicComponent: any;
  10. constructor(public activeModal: NgbActiveModal) { }
  11. }