mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-17 18:10:47 -04:00
9 lines
322 B
React
9 lines
322 B
React
export default function RoomCameraPanel() {
|
|
return (
|
|
<div className="min-h-[8rem] rounded-sm bg-[#242a32] p-1 text-base text-slate-100">
|
|
<p className="text-center text-sm text-slate-400">Room camera</p>
|
|
<p className="mt-1 text-center">Feed placeholder. Wire upcoming room cam here.</p>
|
|
</div>
|
|
);
|
|
}
|