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

20 lines
480 B
TypeScript

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