bootstrap
-
[react] react-starter-kit에 bootstrap 적용 시키기.Frontend/react 2020. 3. 9. 02:34
react 개발을 react-starter-kit boilerplate로 한다. 웹 UI를 bootstrap을 적용시켜서 만들려는데, bootstrap 홈페이지에서 제안하는 방법으로는 적용이 되질 않는다. react-starter-kit의 구조에 맞게 적용을 시켜야한다. 먼저 bootstrap을 설치한다. npm install --save react-bootstrap bootstrap 아래와 같은 방법으로 사용을 하면 제대로 적용이 되지 않는다. {/* The following line can be included in your src/index.js or App.js file*/} import 'bootstrap/dist/css/bootstrap.min.css'; import Button from 'r..