Skip to content

Instantly share code, notes, and snippets.

@szholdiyarov
Created June 14, 2018 04:43
Show Gist options
  • Save szholdiyarov/b04ec23a689ff82dee4f88aa682cfc35 to your computer and use it in GitHub Desktop.
Save szholdiyarov/b04ec23a689ff82dee4f88aa682cfc35 to your computer and use it in GitHub Desktop.
class ItemViewComponent extends React.Component {
render() {
return ( <View> {this.displayJsxMessage()} </View> );
}
displayJsxMessage() {
return {this.props.isGreeting && <Text> Hello, JSX! </Text>}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment