2025-04-06 18:45:43 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {ScrollService} from '@services/scroll.service';
|
2025-04-08 19:45:44 +00:00
|
|
|
import {CommonModule} from '@angular/common';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {HeaderComponent} from '@header/header.component';
|
2025-04-06 18:45:43 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-vote',
|
2025-04-08 19:45:44 +00:00
|
|
|
standalone: true,
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
HeaderComponent
|
|
|
|
|
],
|
2025-04-06 18:45:43 +00:00
|
|
|
templateUrl: './vote.component.html',
|
|
|
|
|
styleUrl: './vote.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class VoteComponent {
|
|
|
|
|
constructor(public scrollService: ScrollService) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
voteMessage: string = '';
|
|
|
|
|
|
|
|
|
|
clickVote(id: string) {
|
|
|
|
|
this.voteMessage = 'Clicked!';
|
|
|
|
|
}
|
|
|
|
|
}
|