Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 6x 9x 6x | import React from "react";
import { Link } from "react-router-dom";
import OurTable from "main/components/OurTable";
export default function DiningCommonsTable({ diningCommonsData }) {
const columns = [
{
Header: "Code",
accessor: "code",
Cell: ({ value }) => <Link to={`/diningcommons/${value}`}>{value}</Link>,
},
{
Header: "Name",
accessor: "name",
},
];
return (
<OurTable
data={diningCommonsData}
columns={columns}
testid={"DiningCommonsTable"}
/>
);
}
|