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