fuse-angular/src/app/modules/admin/apps/contacts/contacts.component.ts
2021-04-15 17:13:46 +03:00

18 lines
384 B
TypeScript

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