Created a list of payments

This commit is contained in:
Tiago Ribeiro
2023-11-27 22:27:51 +00:00
parent 3878d4761e
commit 9bed726062
8 changed files with 400 additions and 5 deletions

View File

@@ -131,7 +131,7 @@ export default function ExamList({user}: {user: User}) {
{table.getHeaderGroups().map((headerGroup) => (
<tr key={headerGroup.id}>
{headerGroup.headers.map((header) => (
<th className="py-4" key={header.id}>
<th className="p-4 text-left" key={header.id}>
{header.isPlaceholder ? null : flexRender(header.column.columnDef.header, header.getContext())}
</th>
))}