Created
May 13, 2018 18:29
-
-
Save gladchinda/e6b18e6111070feb3e45855289229612 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'bootstrap/dist/css/bootstrap.min.css'; | |
import $ from 'jquery'; | |
import Popper from 'popper.js'; | |
import 'bootstrap/dist/js/bootstrap.bundle.min'; | |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import './index.css'; | |
import App from './App'; | |
import registerServiceWorker from './registerServiceWorker'; | |
ReactDOM.render(<Dropdown />, document.getElementById('root')); | |
registerServiceWorker(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was following your post on Medium to setup bootstrap in my react app, but I have an error
TypeError: Cannot set property 'emulateTransitionEnd' of undefined
I think I'm not import jquery correctly. This is my code