mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
16 lines
416 B
TypeScript
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 {}
|
||
|
}
|