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