React에서 jquery, bootstrap 전역으로 사용하기
· 약 1분
create-react-app으로 만들어진 react 앱에서 jquery와 bootstrap을 사용하려면 다음과 같이 설정해주면 된다.
index.js
import "jquery/src/jquery";
import "bootstrap";
create-react-app으로 만들어진 react 앱에서 jquery와 bootstrap을 사용하려면 다음과 같이 설정해주면 된다.
import "jquery/src/jquery";
import "bootstrap";