import { Component, Input, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; @Component({ selector: 'app-step-five', templateUrl: './step-five.component.html', styleUrls: ['./step-five.component.scss'], }) export class StepFiveComponent implements OnInit { @Input() step_max: any; @Input() public form: FormGroup; poll: any; constructor() {} ngOnInit(): void {} askInitFormDefault() {} createPoll() {} automaticSlug() {} }