import { Component, Input, OnInit } from '@angular/core';
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap';

@Component({
  standalone: false,
  selector: 'app-favorites-limit-reached-modal',
  templateUrl: './favorites-limit-reached-modal.component.html',
  styleUrls: ['./favorites-limit-reached-modal.component.scss']
})
export class FavoritesLimitReachedModalComponent implements OnInit {

  @Input() closeFavLimitModal!: () => void;
  @Input() favoritesLimitReachedModal!:NgbModalRef;

  constructor() { }

  ngOnInit(): void {
  }

}
