// Angular Core
import { Component, Input, OnInit } from '@angular/core';

// Services
import { environment } from 'src/environments/environment';

@Component({
  standalone: false,
  selector: 'app-group-notification',
  templateUrl: './group-notification.component.html',
  styleUrls: ['./group-notification.component.scss']
})
export class GroupNotificationComponent implements OnInit {

  @Input() shippingInfo!:any;
  @Input() item!:any;
  imgUrl: string = environment.imageUrl;

  constructor(
  ) { }

  ngOnInit(): void {

  }

}
