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