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