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

@Component({
  standalone: false,
  selector: 'app-added-to-cart-msg-modal',
  templateUrl: './added-to-cart-msg-modal.component.html',
  styleUrls: ['./added-to-cart-msg-modal.component.scss']
})
export class AddedToCartMsgModalComponent implements OnInit {

  @Input() closeAddedToCartMsgModal!: () => void;
  @Input() addedToCartMsgModal!:NgbModalRef;

  constructor() { }

  ngOnInit(): void {
  }

}