Files
doneit-web/src/app/shared/chat/empty-chat/empty-chat.page.ts
T

17 lines
303 B
TypeScript
Raw Normal View History

import { Component, Input, OnInit } from '@angular/core';
2021-03-15 15:19:07 +01:00
@Component({
selector: 'app-empty-chat',
templateUrl: './empty-chat.page.html',
styleUrls: ['./empty-chat.page.scss'],
})
export class EmptyChatPage implements OnInit {
@Input() texto:string;
2021-03-15 15:19:07 +01:00
constructor() { }
ngOnInit() {
}
}