React에서 재사용 가능한 HTML 테이블을 만드는 방법
import React from "react";
import "./DisplayTable.css";
const Table = (props) => {
let body = props.body;
let heading = props.heading;
return (
<table>
<TableHeader heading={heading} />
<tbody>
{body.map((row, index) => (
<TableRow key={index} row={row} />
))}
</tbody>
</table>
);
};
const TableRow = (props) => {
let row = props.row;
return (
<tr key={row}>
{row.map((val, index) => (
<td key={index}>{val}</td>
))}
</tr>
);
};
const TableHeader = (props) => {
let heading = props.heading;
if (heading) {
return (
<thead>
<tr>
{heading.map((head, index) => (
<th key={index}>{head}</th>
))}
</tr>
</thead>
);
}
};
const DisplayTable = (props) => {
// convert each row of data to an array of rows
const body = Object.entries(props.value).map(([key, value]) => {
return value.split(" ");
});
// take first row off to get table data
body.shift();
// get first row off to make table headings
const firstRow = props.value[0];
let heading;
if (firstRow) {
heading = firstRow.split(" ");
}
// make an array of strings
return <Table body={body} heading={heading}></Table>;
};
export default DisplayTable;
DisplayTable.css
td {
text-align: right;
}
Reference
이 문제에 관하여(React에서 재사용 가능한 HTML 테이블을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dbrownsoftware/how-to-create-a-reusable-html-table-in-react-30pf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)