argos/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.ts

19 lines
296 B
TypeScript
Raw Normal View History

2017-11-16 14:21:57 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
2017-11-16 15:16:09 +01:00
selector: 'dmp-detailed',
2017-11-16 14:21:57 +01:00
templateUrl: './dmp-detailed.component.html',
styleUrls: ['./dmp-detailed.component.css']
})
export class DmpDetailedComponent implements OnInit {
2017-11-16 18:07:27 +01:00
constructor() {
}
2017-11-16 14:21:57 +01:00
ngOnInit() {
2017-11-16 18:07:27 +01:00
2017-11-16 14:21:57 +01:00
}
}