Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilhantekir/01aaf0cacb05eaa5eea6c42cf89c1874 to your computer and use it in GitHub Desktop.
Save ilhantekir/01aaf0cacb05eaa5eea6c42cf89c1874 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