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 27 28 29 30 31 32 33 | 7x 18x 7x | import OurTable from "../OurTable";
import { fromFormat } from "main/utils/quarterUtilities";
export default function GradeHistoryTable({ grades }) {
const columns = [
{
Header: "Quarter",
accessor: (row) => fromFormat(row.yyyyq),
id: "quarter",
},
{
Header: "Course ID",
accessor: "course",
},
{
Header: "Instructor",
accessor: "instructor",
},
{
Header: "Grade",
accessor: "grade",
},
{
Header: "Count",
accessor: "count",
},
];
return (
<OurTable data={grades} columns={columns} testid="GradeHistoryTable" />
);
}
|