mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 05:45:50 +00:00
16 lines
291 B
TypeScript
16 lines
291 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-document-detail',
|
||
|
|
templateUrl: './document-detail.page.html',
|
||
|
|
styleUrls: ['./document-detail.page.scss'],
|
||
|
|
})
|
||
|
|
export class DocumentDetailPage implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|