libmodulor
Version:
A TypeScript library to create platform-agnostic applications
5 lines (4 loc) • 307 B
TypeScript
import { type ReactElement } from 'react';
import type { DataType } from '../../dt/index.js';
import { type UCFormFieldProps } from '../lib/react/form.js';
export declare function UCFormField<T extends DataType>({ disabled, execState, f, onChange: onChangeBase, only, }: UCFormFieldProps<T>): ReactElement;