UNPKG

lynx-form-x

Version:

LynxFormX is a lightweight and intuitive form library built for the Lynx framework for mobile development. It streamlines form management by automatically binding fields, handling validation, and providing easy-to-use hooks for custom field manipulation—a

10 lines (9 loc) • 290 B
import { type FC } from '@lynx-js/react'; import type { ViewProps } from '@lynx-js/types'; import type { BindInput } from '../hooks/useForm.jsx'; type FieldProps = { name: string; bindinput?: BindInput; } & Partial<ViewProps>; export declare const Field: FC<FieldProps>; export {};