import { TableCell } from "./table-cell.js"; export interface TableRow { readonly children: ReadonlyArray; } export interface TableRowProps {} export function create(props?: TableRowProps, children?: ReadonlyArray): TableRow { const {} = props || {}; return { children: children || [], }; }