import { Component, OnInit } from '@angular/core'; import { Comment } from '../comment'; @Component({ selector: 'app-comment', templateUrl: './comment.component.html', styleUrls: ['./comment.component.scss'] }) export class CommentComponent implements OnInit { comments: Comment[]; constructor() { } ngOnInit() { } }