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