如何在codepen中将引导程序类添加到我的jsx中?我试图在jsx中将container-fluid
、row
和col-*
添加到我的div中,但它们不起作用,有人知道怎么做吗?
安装引导程序:
npm install bootstrap
然后将以下导入语句添加到index.js文件中
import 'bootstrap/dist/css/bootstrap.css';
而不是写<div class="container-fluid"></div>
<div className="container-fluid"></div>