i want to show react-bootstrap-modal but only the overlay appear and modal not showing
import Modal from 'react-bootstrap-modal';
......
<Modal
show={this.state.open}
onHide={this.closeModal}
aria-labelledby="ModalHeader"
>
<Modal.Header closeButton>
<Modal.Title id='ModalHeader'>A Title Goes here</Modal.Title>
</Modal.Header>
<Modal.Body>
<p>Some Content here</p>
</Modal.Body>
<Modal.Footer>
// If you don't have anything fancy to do you can use
// the convenient `Dismiss` component, it will
// trigger `onHide` when clicked
<Modal.Dismiss className='btn btn-default'>Cancel</Modal.Dismiss>
// Or you can create your own dismiss buttons
<button className='btn btn-primary'>
Save
</button>
</Modal.Footer>
</Modal>
.....
screenshot:

It seems problem with animation use animation={false} <Modal animation={false}>
</Modal>
Almost 2 years and the error still occurs. The bug mentioned in the accepted answer is closed without any solution.
The main issue causing this behavior is that the backdrop has the class "fade" applied correctly, but the same class is applied to the modal too. Making the modal invisible.
To overcome this, forcefully override the opacity that is being set by the "fade" class.
<Modal style={{opacity:1}}> </Modal>
Adding fade={false} worked to at least get the modal to display for me.