I am working on some migrations, some of the legacy code works with bootstrap and bootstrap uses behind the scenes jquery as a dependency...
I was wondering if we can use pure bootstrap with react, does bootstrap interfere with the nature of react virtual DOM? is it possible to use it without running into further problems in the future?
Modals, Popovers could be sensible to mixing this two techs?
Changing to react-bootstrap / material ui, means further changes for me...
Bootstrapfor static modals and then have your custom components for rest of site. But if you wish to share data between react and bootstrap element, its better to create your own Modal component. Going outside a frameworks' scope will make your code fragile.