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

20 lines
443 B
TypeScript
Raw Normal View History

2020-01-16 10:20:47 +01:00
import {Component, Input, OnInit} from '@angular/core';
2020-01-20 14:36:26 +01:00
import {mockComments} from "../../../config/mocks/mock-comments";
2020-01-16 10:20:47 +01:00
@Component({
selector: 'framadate-voting-comment',
templateUrl: './voting-comment.component.html',
styleUrls: ['./voting-comment.component.scss']
})
export class VotingCommentComponent implements OnInit {
@Input() private comment = mockComments[0];
constructor() {
}
ngOnInit() {
}
}