src/app/layout/blank-page/blank-page.component.ts
| selector | app-blank-page |
| styleUrls | blank-page.component.scss |
| templateUrl | ./blank-page.component.html |
Methods |
constructor()
|
| ngOnInit |
ngOnInit()
|
|
Returns :
void
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-blank-page',
templateUrl: './blank-page.component.html',
styleUrls: ['./blank-page.component.scss']
})
export class BlankPageComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
}