Since I don't want to use Bootstrap jquery or reactstrap, I'm trying to implement bootstrap native in react, a plain javascript version of bootstrap, in React.
tried
pm install --save bootstrap.native
and loaded with
import 'bootstrap.native/dist/bootstrap-native-v4.js';
But it does not work, I tried with the CDN before the closing body tag in index.html
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap.native/2.0.27/bootstrap-native-v4.min.js"></script>
But functionalities like modals and dropdowns doesn't work, I have no error in the debug console.