mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 06:15:12 +00:00
21 lines
540 B
TypeScript
21 lines
540 B
TypeScript
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
@Component({
|
|
selector : 'chat-empty-conversation',
|
|
templateUrl : './empty-conversation.component.html',
|
|
encapsulation : ViewEncapsulation.None,
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
standalone : true,
|
|
imports : [MatIconModule],
|
|
})
|
|
export class EmptyConversationComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|