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

@Component({
  standalone: false,
  selector: 'app-estimated-delivery-time',
  templateUrl: './estimated-delivery-time.component.html',
  styleUrls: ['./estimated-delivery-time.component.scss']
})
export class EstimatedDeliveryTimeComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}
