import { Component,Output,EventEmitter } from '@angular/core'; import { Icon } from '@state'; @Component({ selector: 'sweeper-reactions', templateUrl: './reactions.component.html', styleUrls: ['./reactions.component.scss'], }) export class ReactionsComponent { title = "reactions"; @Output() react:EventEmitter = new EventEmitter(); //react(reaction:string){this.comments.send({user:'Jackswift',body:reaction});} }