mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-expediente',
|
|
templateUrl: './expediente.component.html',
|
|
styleUrls: ['./expediente.component.scss'],
|
|
})
|
|
export class ExpedienteComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|