// Display Rover Grid // Purpose: Fills the central 16:10 display band with rover driver/battery cells. // Scope: Keeps rover status presentation dense and label-free for room readability. import DisplayRoverCell from './DisplayRoverCell.jsx'; import { gridClassForRoverCount } from '../utils.js'; export default function DisplayRoverGrid({ roster = [], session }) { if (!roster.length) { return (
No rovers
); } return (
{roster.map((rover) => ( ))}
); }