"use client"; import { OOTableProps } from "../types"; import { EmptyRow } from "./EmptyRow"; import { SettledRow } from "./SettledRow"; export const SettledTable = ({ assertions }: OOTableProps) => { return (
{/* Header */} {assertions.length > 0 ? ( assertions.map(assertion => ) ) : ( )}
Description Result Winner Reward Claim
); };