beteran-backend-app-browser/src/app/modules/landing/home/home.component.ts
2022-06-28 16:40:33 +09:00

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()
{
}
}