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

14 lines
285 B
TypeScript
Raw Normal View History

2019-12-01 19:21:05 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
2020-04-21 10:50:26 +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-21 10:50:26 +02:00
show_mask = true;
constructor() {}
2019-12-01 19:21:05 +01:00
2020-04-21 10:50:26 +02:00
ngOnInit() {}
2019-12-01 19:21:05 +01:00
}