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

16 lines
416 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { PollService } from '../../../../../core/services/poll.service';
@Component({
selector: 'app-step-six',
templateUrl: './step-six.component.html',
styleUrls: ['./step-six.component.scss'],
})
export class StepSixComponent implements OnInit {
constructor(public pollService: PollService) {
this.pollService.step_current = 6;
}
ngOnInit(): void {}
}