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

16 lines
271 B
TypeScript
Raw Normal View History

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