Skip to content
Snippets Groups Projects
deposit-detail.component.ts 473 B
Newer Older
import {ChangeDetectionStrategy, Component, Input, OnInit} from '@angular/core';
import {DepositsModel} from '@app/generated-api';

@Component({
  selector: 'dlcm-deposit-detail',
  templateUrl: './deposit-detail.component.html',
  styleUrls: ['./deposit-detail.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DepositDetailComponent implements OnInit {
  @Input()
  deposit: DepositsModel;