Initial commit with 🏗️ create-eth @ 2.0.4
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import { OOTableProps } from "../types";
|
||||
import { EmptyRow } from "./EmptyRow";
|
||||
import { ProposedRow } from "./ProposedRow";
|
||||
|
||||
export const ProposedTable = ({ assertions }: OOTableProps) => {
|
||||
return (
|
||||
<div className="bg-base-100 rounded-lg shadow-lg overflow-x-auto">
|
||||
<table className="w-full table-auto [&_th]:px-6 [&_th]:py-4 [&_td]:px-6 [&_td]:py-4">
|
||||
{/* Header */}
|
||||
<thead>
|
||||
<tr className="bg-base-300">
|
||||
<th className="text-left font-semibold w-5/12">Description</th>
|
||||
<th className="text-left font-semibold w-2/12">Bond</th>
|
||||
<th className="text-left font-semibold w-2/12">Proposal</th>
|
||||
<th className="text-left font-semibold w-2/12">Time Left</th>
|
||||
<th className="text-left font-semibold w-1/12">{/* Icon column */}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{assertions.length > 0 ? (
|
||||
assertions.map(assertion => (
|
||||
<ProposedRow key={assertion.assertionId} assertionId={assertion.assertionId} state={assertion.state} />
|
||||
))
|
||||
) : (
|
||||
<EmptyRow colspan={5} />
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user