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 {
|
|
|
|
|
2020-01-22 11:18:55 +01:00
|
|
|
@Input() comment = mockComments[0];
|
2020-01-16 10:20:47 +01:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|