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

18 lines
375 B
TypeScript

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