- added region painting context and components
- can switch to target detection on region select
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user