Skip to content

Instantly share code, notes, and snippets.

@iRoachie
Created June 10, 2017 05:35
Show Gist options
  • Save iRoachie/d12e11937c7c5395dd350ddba9fd7662 to your computer and use it in GitHub Desktop.
Save iRoachie/d12e11937c7c5395dd350ddba9fd7662 to your computer and use it in GitHub Desktop.
Ternary Statement
class MeoMeo extends React.Component {
shouldComponentUpdate() {
return false
}
render() {
return this.props.type === 1 ? <Container1 /> : <Container2 />
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment