import { Component, Input, OnInit } from '@angular/core'; import { CommentService } from './comment.service'; @Component({ selector: 'comment', template: ` ` }) export class CommentComponent { @Input() config: any; constructor(private commentService: CommentService) {} ngOnInit() { this.commentService.config = this.config; } }