Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active March 30, 2020 17:04
Show Gist options
  • Save akexorcist/78ea183eea18458ace241518864b21e7 to your computer and use it in GitHub Desktop.
Save akexorcist/78ea183eea18458ace241518864b21e7 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
...
class ChildComponent extends Component {
...
render() {
return (
<React.Fragment>
...
{
(this.props.buttonVisibility) ? <button>Let's do this!</button> : ''
}
</React.Fragment>
)
}
}
export default ChildComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment