chore: replace plan editor functionality into own folder with own files.

This commit is contained in:
Björn Otgaar
2026-01-28 12:26:57 +01:00
parent 1876138fe2
commit dcf4f01e68
16 changed files with 365 additions and 301 deletions

View File

@@ -4,7 +4,7 @@
import { useState } from 'react';
import userEvent from '@testing-library/user-event';
import { renderWithProviders, screen } from '../../../../test-utils/test-utils.tsx';
import GestureValueEditor from '../../../../../src/pages/VisProgPage/visualProgrammingUI/components/GestureValueEditor';
import GestureValueEditor from '../../../../../src/pages/VisProgPage/visualProgrammingUI/components/PlanEditor/GestureValueEditor.tsx';
function TestHarness({ initialValue = '', initialType=true, placeholder = 'Gesture name' } : { initialValue?: string, initialType?: boolean, placeholder?: string }) {
const [value, setValue] = useState(initialValue);