Created
July 11, 2019 05:20
-
-
Save anchetaWern/09c7ff7c98957f613f95710fbf8b6060 to your computer and use it in GitHub Desktop.
Pokedex Bot: render in App.js
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
| render() { | |
| return ( | |
| <View style={styles.container}> | |
| <GiftedChat | |
| messages={this.state.messages} | |
| onSend={messages => this.onSend(messages)} | |
| user={{ | |
| _id: 1 | |
| }} | |
| /> | |
| </View> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment