fuse-angular/src/app/modules/admin/apps/chat/chat.component.ts
2021-04-30 19:18:09 +03:00

18 lines
372 B
TypeScript

import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
@Component({
selector : 'chat',
templateUrl : './chat.component.html',
encapsulation : ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ChatComponent
{
/**
* Constructor
*/
constructor()
{
}
}