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

17 lines
296 B
TypeScript
Raw Normal View History

2019-12-01 19:21:05 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'framadate-voting',
templateUrl: './voting.component.html',
styleUrls: ['./voting.component.scss']
})
export class VotingComponent implements OnInit {
2019-12-29 18:35:15 +01:00
show_mask=true;
constructor() {
}
2019-12-01 19:21:05 +01:00
ngOnInit() {
}
}