forked from tykayn/funky-framadate-front
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'framadate-voting-choice',
|
|
templateUrl: './voting-choice.component.html',
|
|
styleUrls: ['./voting-choice.component.scss']
|
|
})
|
|
export class VotingChoiceComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|