17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
|
import { Component, ViewEncapsulation } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector : 'landing-home',
|
||
|
templateUrl : './home.component.html',
|
||
|
encapsulation: ViewEncapsulation.None
|
||
|
})
|
||
|
export class LandingHomeComponent
|
||
|
{
|
||
|
/**
|
||
|
* Constructor
|
||
|
*/
|
||
|
constructor()
|
||
|
{
|
||
|
}
|
||
|
}
|