import { Component, Input, OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { PollService } from '../../../../../core/services/poll.service'; @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(public pollService: PollService) {} ngOnInit(): void {} askInitFormDefault() {} createPoll() {} automaticSlug() {} }