Files
BayIQ-UI/src/features/cameras/components/CameraGrid.tsx

21 lines
552 B
TypeScript
Raw Normal View History

import { useState } from "react";
import VideoFeedGridPainter from "./Video/VideoFeedGridPainter";
import CameraSettings from "./CameraSettings/CameraSettings";
import PlatePatch from "./PlatePatch/PlatePatch";
const CameraGrid = () => {
2025-11-24 13:29:00 +00:00
const [tabIndex, setTabIndex] = useState(0);
return (
<div className="grid grid-cols-1 md:grid-cols-5 md:grid-rows-5 max-h-screen">
<VideoFeedGridPainter />
<CameraSettings tabIndex={tabIndex} setTabIndex={setTabIndex} />
<PlatePatch />
</div>
);
};
export default CameraGrid;