forked from tykayn/funky-framadate-front
16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { mockComments } from '../../../mocks/mock-comments';
|
|
|
|
@Component({
|
|
selector: 'app-voting-comment',
|
|
templateUrl: './voting-comment.component.html',
|
|
styleUrls: ['./voting-comment.component.scss'],
|
|
})
|
|
export class VotingCommentComponent implements OnInit {
|
|
@Input() comment = mockComments[0];
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|