mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-15 12:55:14 +00:00
18 lines
381 B
TypeScript
18 lines
381 B
TypeScript
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'academy',
|
|
templateUrl : './academy.component.html',
|
|
encapsulation : ViewEncapsulation.None,
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class AcademyComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|