Blame view

src/app/component/import-vessels/progress/progress.component.ts 313 Bytes
632c4ac2f   lsagona   import vessels
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import {Component, Input, OnInit} from '@angular/core';
  
  @Component({
    selector: 'app-progress',
    templateUrl: './progress.component.html',
    styleUrls: ['./progress.component.scss']
  })
  export class ProgressComponent implements OnInit {
    @Input() progress = 0;
    constructor() { }
  
    ngOnInit(): void {
    }
  
  }