import { Component, Input, OnInit } from '@angular/core'; import { PollService } from '../../../../core/services/poll.service'; @Component({ selector: 'app-step-three', templateUrl: './step-three.component.html', styleUrls: ['./step-three.component.scss'], }) export class StepThreeComponent implements OnInit { @Input() step_max: any; @Input() form: any; constructor(public pollService: PollService) {} ngOnInit(): void {} }