I'm trying to get isActivated from an @Input() tweets. But When I want to store the isActivated to a variable this error comes up: Tweet is not defined. and Here's my code:( And sorry for my English too)
export class SingleTweetComponent {
@Input() tweet;
isActivated = tweet.isActivated;
likeButton($event){
this.tweet.totalLikes = this.tweet.totalLikes - 1;
}
}