spectatro

This commit is contained in:
legop3
2026-04-28 14:17:36 -04:00
parent 13e9ebc909
commit 1d6bc24067
10 changed files with 254 additions and 231 deletions
@@ -0,0 +1,17 @@
// 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>
);
}