funky-framadate-front/src/app/pages/voting/voting-choice/voting-choice.component.ts

21 lines
511 B
TypeScript
Raw Normal View History

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']
})
export class VotingChoiceComponent extends BaseComponent implements OnInit {
2019-08-21 14:28:50 +02:00
constructor(public config: ConfigService) {
super(config);
}
2019-08-21 14:28:50 +02:00
ngOnInit() {
2019-08-21 14:28:50 +02:00
}
}