2019-12-01 19:21:05 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2020-04-14 11:28:33 +02:00
|
|
|
selector: 'framadate-voting',
|
|
|
|
templateUrl: './voting.component.html',
|
|
|
|
styleUrls: ['./voting.component.scss'],
|
2019-12-01 19:21:05 +01:00
|
|
|
})
|
|
|
|
export class VotingComponent implements OnInit {
|
2020-04-14 11:28:33 +02:00
|
|
|
show_mask = true;
|
|
|
|
constructor() {}
|
2019-12-01 19:21:05 +01:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
ngOnInit() {}
|
2019-12-01 19:21:05 +01:00
|
|
|
}
|