funky-framadate-front/src/app/features/administration/form/step-five/step-five.component.ts

22 lines
463 B
TypeScript

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() {}
}