mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
2c766015e7
-style expedient for desktop ongoing
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-empty-chat',
|
|
templateUrl: './empty-chat.page.html',
|
|
styleUrls: ['./empty-chat.page.scss'],
|
|
})
|
|
export class EmptyChatPage implements OnInit {
|
|
@Input() texto:string;
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|