import { Component, OnInit, Input } from '@angular/core'; import { SharedBehaviorSubjectService } from '../../../shared/services/shared-behavior-subject.service'; @Component({ selector: 'app-preview', templateUrl: './preview.component.html', styleUrls: ['./preview.component.css'] }) export class PreviewComponent implements OnInit { settingArrayObj: any = []; radioParam: any; checkBoxParam: any; selectedCity1: any; constructor(private sharedService: SharedBehaviorSubjectService) { this.sharedService.previewQuestions.subscribe((obj: any) => { this.settingArrayObj = obj; }); } ngOnInit() { } }