mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-voting',
|
|
templateUrl: './voting.component.html',
|
|
styleUrls: ['./voting.component.scss'],
|
|
})
|
|
export class VotingComponent implements OnInit {
|
|
show_mask = true;
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|