张老师,您好,在我这里用了bootstrap的样式,但是好像没有效果,
import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
export default function HomePage() {
return (
<div className="App container-fluid">
<div className="row">
<div className="col-3 bg-light left-panel">
<h1>this is the left this is the left this is the left</h1>
</div>
<div className="col-9 bg-primary right-panel">
<h1>this is the right</h1>
</div>
</div>
</div>
);
}
请问一下,这个该怎么解决呢?