funky-framadate-front/mocks/old-stuff/pages/voting/voting-comment/voting-comment.component.ts

16 lines
403 B
TypeScript
Raw Normal View History

import { Component, Input, OnInit } from '@angular/core';
2020-05-12 19:16:23 +02:00
import { mockComments } from '../../../mocks/mock-comments';
2020-01-16 10:20:47 +01:00
@Component({
2020-04-22 12:56:18 +02:00
selector: 'app-voting-comment',
2020-04-21 10:50:26 +02:00
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-05-01 19:10:17 +02:00
ngOnInit(): void {}
2020-01-16 10:20:47 +01:00
}