import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-group-chat', templateUrl: './group-chat.page.html', styleUrls: ['./group-chat.page.scss'], }) export class GroupChatPage implements OnInit { constructor() { } ngOnInit() { } }