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
|
|
|
}
|
|
|
|
|
|
|
|
}
|