- added region painting context and components

- can switch to target detection on region select
This commit is contained in:
2026-01-09 16:16:28 +00:00
parent 58e9490a09
commit 1555221825
9 changed files with 308 additions and 25 deletions

View File

@@ -1,13 +1,14 @@
import { Formik, Form } from "formik";
import type { CameraSettings } from "../../../../utils/types";
type CameraControlProps = {
tabIndex: number;
state: CameraSettings;
};
const CameraControls = ({ tabIndex }: CameraControlProps) => {
const CameraControls = ({ state }: CameraControlProps) => {
console.log(state);
const initialValues = {};
console.log(tabIndex);
const handleSumbit = (values: { test?: string }) => {
console.log(values);
};