beteran-backend-app-browser/src/app/modules/landing/home/home.component.ts

17 lines
303 B
TypeScript
Raw Normal View History

2022-06-28 07:40:33 +00:00
import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector : 'landing-home',
templateUrl : './home.component.html',
encapsulation: ViewEncapsulation.None
})
export class LandingHomeComponent
{
/**
* Constructor
*/
constructor()
{
}
}