- Implement CameraFeed context and provider with reducer for state management

- able to switch footage on tab clicks
This commit is contained in:
2025-11-27 10:43:56 +00:00
parent 6accac02de
commit 1ada8d0966
9 changed files with 101 additions and 10 deletions

View File

@@ -95,3 +95,12 @@ export type OptionalBOF2LaneIDs = {
LID2?: string;
LID3?: string;
};
export type CameraFeedState = {
cameraFeedID: "A" | "B" | "C" | null;
};
export type CameraFeedAction = {
type: string;
payload: "A" | "B" | "C" | null;
};