import { Formik, Form } from "formik"; type CameraControlProps = { tabIndex: number; }; const CameraControls = ({ tabIndex }: CameraControlProps) => { const initialValues = {}; console.log(tabIndex); const handleSumbit = (values: { test?: string }) => { console.log(values); }; return (
); }; export default CameraControls;