forked from tykayn/funky-framadate-front
20 lines
437 B
TypeScript
20 lines
437 B
TypeScript
|
import {Component, Input, OnInit} from '@angular/core';
|
||
|
import {mockComments} from "../../../config/mock-comments";
|
||
|
|
||
|
@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() {
|
||
|
}
|
||
|
|
||
|
}
|