Skip to content

Instantly share code, notes, and snippets.

@FreddyPoly
Created May 29, 2017 14:56
Show Gist options
  • Save FreddyPoly/69f203064601dc1635e7992b9bf78091 to your computer and use it in GitHub Desktop.
Save FreddyPoly/69f203064601dc1635e7992b9bf78091 to your computer and use it in GitHub Desktop.
[REACT NATIVE] Display / Hide Components
render(){
return(
{yourCondition ? <yourComponent /> : null}
{ this.state.btn_state ? <View>
{this.state.list_options}
</View> : null }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment