Skip to content
Snippets Groups Projects
create-deposit-view.component.ts 396 B
Newer Older
import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';

@Component({
  selector: 'dlcm-create-deposit-view',
  templateUrl: './create-deposit-view.component.html',
  styleUrls: ['./create-deposit-view.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CreateDepositViewComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}