Created
January 6, 2020 15:58
-
-
Save pmbanugo/b5e0c6388f5ec0553873713c14ed62b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onNewMessage = event => { | |
let message = { | |
text: event.message.text, | |
author: event.message.user, | |
timestamp: event.message.created_at | |
}; | |
this.messages = [...this.messages, message]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment