import React from 'react'; import Cell from "./Cell"; export default function Row({spec, index}) { const cells = spec.map((cell, cellIdx) => ) return (
{cells}
); }