Created
December 23, 2019 13:59
-
-
Save pmbanugo/07a9433b9ac5754bdb9e14c5bd354bae 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
constructor(props) { | |
super(props); | |
this.user = undefined; | |
this.bot = { id: "0", name: "bot" }; | |
this.state = { | |
messages: [ | |
{ | |
author: this.bot, | |
timestamp: new Date(), | |
text: "Hello! Please enter a name in order to start a chat" | |
} | |
] | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment