15 lines
237 B
TypeScript
15 lines
237 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-pages-home',
|
||
|
templateUrl: './home-page.component.html',
|
||
|
})
|
||
|
export class HomePageComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|