Files
doneit-web/src/app/ui/chat/component/empty-chat/empty-chat.page.ts
T
2024-08-16 14:21:01 +01:00

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() {
}
}