diff --git a/src/create/createQuestion.tsx b/src/create/createQuestion.tsx index bf3d3b62..93fe0950 100644 --- a/src/create/createQuestion.tsx +++ b/src/create/createQuestion.tsx @@ -9,12 +9,6 @@ import WorkSpace from "./workSpace"; import Header from "./header"; import { saveCondition, getCondition } from "./lsBacking"; import type {ElementsOfObject} from "./questionTypes" -//Значения, собираемые для отправки на бэк -interface Values { - title: string; - children: string; - description: string; -} const types = [ {desc:"текст", value:"text"}, @@ -25,19 +19,6 @@ const types = [ {desc: "описание", value: "description"}, {desc:"ничего", value:"none"}, ] -export const TextField = (props: any) => { - - const [field, meta, helpers] = useField(props); - - return ( - <> -