mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
18 lines
466 B
React
18 lines
466 B
React
// Secondary panel row showing room cameras.
|
|
import RoomCameraPanel from '../../../components/RoomCameraPanel.jsx';
|
|
|
|
export default function SecondaryRow() {
|
|
return (
|
|
<section className="min-h-0">
|
|
<div className="surface min-h-[14rem] overflow-hidden">
|
|
<RoomCameraPanel
|
|
defaultOrientation="horizontal"
|
|
hideLayoutToggle
|
|
hideHeader
|
|
panelId="spectator-secondary"
|
|
/>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|