Skip to content
Snippets Groups Projects
comment.component.ts 360 B
Newer Older
import { Component, Input, OnInit } from '@angular/core';
Louis Peter's avatar
Louis Peter committed
import { Comment } from '../../../models/comment';

@Component({
  selector: 'app-comment',
  templateUrl: './comment.component.html',
  styleUrls: ['./comment.component.scss']
})
export class CommentComponent implements OnInit {
Louis Peter's avatar
Louis Peter committed
  @Input() comment: Comment;
  constructor() { }

  ngOnInit() {
  }

}