import Label from '../../components/Common/Label'; import { useRSForm } from '../../context/RSFormContext'; interface ExpressionEditorProps { id: string label: string disabled?: boolean placeholder?: string value: any onChange: (event: React.ChangeEvent) => void } function ExpressionEditor({id, label, disabled, placeholder, value, onChange}: ExpressionEditorProps) { const { schema } = useRSForm(); return (