import { OOTableProps } from "../types"; import { EmptyRow } from "./EmptyRow"; import { ProposedRow } from "./ProposedRow"; export const ProposedTable = ({ assertions }: OOTableProps) => { return (
{/* Header */} {assertions.length > 0 ? ( assertions.map(assertion => ( )) ) : ( )}
Description Bond Proposal Time Left {/* Icon column */}
); };