"use client"; import React from "react"; import { Row } from "./Row"; import TableContext from "./TableContext"; import type { TableRow } from "./types"; const Rows: React.FC = () => { const { rows } = React.useContext(TableContext); return (
{rows.map((row, i) => (