Skip to content
Snippets Groups Projects
comment.component.ts 335 B
Newer Older
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[];