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

22 lines
463 B
TypeScript
Raw Normal View History

2021-10-19 10:23:54 +02:00
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 {
2021-10-19 10:23:54 +02:00
@Input() step_max: any;
@Input() public form: FormGroup;
poll: any;
constructor() {}
ngOnInit(): void {}
2021-10-19 10:23:54 +02:00
askInitFormDefault() {}
createPoll() {}
automaticSlug() {}
}