반응 부트스트랩 테이블
페이지 매김 및 검색과 함께 React Bootstrap 테이블을 사용하는 방법
이 게시물에서는 MDBDataTable을 사용하고 있습니다.
문서: https://mdbootstrap.com/docs/react/tables/datatables/
설치하는 방법
npm install mdbreact --save
React 부트스트랩 테이블을 사용하는 방법
import React from "react";
import "bootstrap/dist/css/bootstrap.min.css";
import { MDBDataTable } from "mdbreact";
const data = {
columns: [
{
label: "Name",
field: "name",
sort: "asc",
width: 150,
},
{
label: "Position",
field: "position",
sort: "asc",
width: 270,
},
{
label: "Office",
field: "office",
sort: "asc",
width: 200,
},
{
label: "Age",
field: "age",
sort: "asc",
width: 100,
},
{
label: "Start date",
field: "date",
sort: "asc",
width: 150,
},
{
label: "Salary",
field: "salary",
sort: "asc",
width: 100,
},
],
rows: [
{
name: "Nix",
position: "Architect",
office: "New City",
age: "34",
date: "2011/04/25",
salary: "$220",
},
{
name: "Wix",
position: "Accountant",
office: "Tokyo",
age: "63",
date: "2011/07/25",
salary: "$170",
},
{
name: "Ashton Cox",
position: "Junior Technical Author",
office: "San Francisco",
age: "66",
date: "2009/01/12",
salary: "$86",
},
{
name: "Cedric Kelly",
position: "Senior Javascript Developer",
office: "Edinburgh",
age: "22",
date: "2012/03/29",
salary: "$433",
},
{
name: "Brielle Williamson",
position: "Integration Specialist",
office: "New York",
age: "61",
date: "2012/12/02",
salary: "$372",
},
],
};
function App() {
return (
<div className="App">
<MDBDataTable striped bordered small data={data} />
</div>
);
}
export default App;
데모: CodeSandBox 링크 https://codesandbox.io/s/react-bootstrap-table-askavy-sbdy4
Reference
이 문제에 관하여(반응 부트스트랩 테이블), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/askavy/react-bootstrap-table-5915텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)