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

8 lines (7 loc) • 208 B
import { type FC } from '@lynx-js/react'; import type { ViewProps } from '@lynx-js/types'; type ErrorProps = { name: string; } & Partial<ViewProps>; export declare const Error: FC<ErrorProps>; export {};