1 import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'
2 import { CustomPageService } from '@app/shared/shared-main/custom-page'
5 templateUrl: './home.component.html'
8 export class HomeComponent implements OnInit {
9 @ViewChild('contentWrapper') contentWrapper: ElementRef<HTMLInputElement>
11 homepageContent: string
14 private customPageService: CustomPageService
18 this.customPageService.getInstanceHomepage()
19 .subscribe(({ content }) => this.homepageContent = content)