2020-04-14 11:28:33 +02:00
|
|
|
import { Component, Input, OnInit } from '@angular/core';
|
2020-04-19 14:22:10 +02:00
|
|
|
import { mockComments } from '../../../mocks/mock-comments';
|
2020-01-16 10:20:47 +01:00
|
|
|
|
|
|
|
@Component({
|
2020-04-21 10:50:26 +02:00
|
|
|
selector: 'framadate-voting-comment',
|
|
|
|
templateUrl: './voting-comment.component.html',
|
|
|
|
styleUrls: ['./voting-comment.component.scss'],
|
2020-01-16 10:20:47 +01:00
|
|
|
})
|
|
|
|
export class VotingCommentComponent implements OnInit {
|
2020-04-21 10:50:26 +02:00
|
|
|
@Input() comment = mockComments[0];
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
constructor() {}
|
2020-01-16 10:20:47 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
ngOnInit() {}
|
2020-01-16 10:20:47 +01:00
|
|
|
}
|