Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active March 30, 2020 17:04
Show Gist options
  • Select an option

  • Save akexorcist/49caed292e7337cde5037ad7f25adedd to your computer and use it in GitHub Desktop.

Select an option

Save akexorcist/49caed292e7337cde5037ad7f25adedd to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
...
class SecondChildComponent extends Component {
...
render() {
return (
<React.Fragment>
{this.props.isOrderConfirm ? 'Your order is inprogress.' : ''}
</React.Fragment>
)
}
}
export default SecondChildComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment