AltitudeWeb/frontend/src/app/vote/vote.component.ts

20 lines
418 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
import {ScrollService} from '../scroll/scroll.service';
@Component({
selector: 'app-vote',
standalone: false,
templateUrl: './vote.component.html',
styleUrl: './vote.component.scss'
})
export class VoteComponent {
constructor(public scrollService: ScrollService) {
}
voteMessage: string = '';
clickVote(id: string) {
this.voteMessage = 'Clicked!';
}
}