"use client"; import { OOTableProps } from "../types"; import { DisputedRow } from "./DisputedRow"; import { EmptyRow } from "./EmptyRow"; export const DisputedTable = ({ assertions }: OOTableProps) => { return (
{/* Header */} {assertions.length > 0 ? ( assertions.map(assertion => ( )) ) : ( )}
Description Proposer Disputer {/* Icon column */}
); };