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

20 lines
480 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { PollService } from '../../../../core/services/poll.service';
@Component({
selector: 'app-step-four',
templateUrl: './step-four.component.html',
styleUrls: ['./step-four.component.scss'],
})
export class StepFourComponent implements OnInit {
urlPrefix: any;
advancedDisplayEnabled: any;
@Input()
step_max: any;
@Input()
form: any;
constructor(public pollService: PollService) {}
ngOnInit(): void {}
}