import React from 'react'; import GameRow from './GameRow'; export default function GameGrid({ grid, width, middle }) { return ( {grid.map((row, rowIndex) => ( ))}
); }