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