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