Files
doneit-web/src/app/shared/chat/empty-chat/empty-chat.page.ts
T
tiago.kayaya 2c766015e7 -style approve entents for desktop finished
-style expedient  for desktop ongoing
2021-03-18 16:30:03 +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() {
}
}