2019-08-21 14:28:50 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2020-01-16 10:20:15 +01:00
|
|
|
import {BaseComponent} from "../../base-page/base.component";
|
|
|
|
import {ConfigService} from "../../../services/config.service";
|
2019-08-21 14:28:50 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-voting-choice',
|
|
|
|
templateUrl: './voting-choice.component.html',
|
|
|
|
styleUrls: ['./voting-choice.component.scss']
|
|
|
|
})
|
2019-09-09 10:57:08 +02:00
|
|
|
export class VotingChoiceComponent extends BaseComponent implements OnInit {
|
2019-08-21 14:28:50 +02:00
|
|
|
|
2019-09-09 10:57:08 +02:00
|
|
|
constructor(public config: ConfigService) {
|
|
|
|
super(config);
|
|
|
|
}
|
2019-08-21 14:28:50 +02:00
|
|
|
|
2019-09-09 10:57:08 +02:00
|
|
|
|
|
|
|
ngOnInit() {
|
2019-08-21 14:28:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|