UNPKG

@start-base/react-form-elements

Version:

Simplify form elements and form management. Selection of user friendly inputs and wide customization abilities to match your design and functionality.

9 lines (6 loc) 224 B
import React, { HTMLProps, ReactNode } from 'react'; interface FormProps extends HTMLProps<HTMLFormElement> { children: ReactNode; } declare const Form: React.FC<FormProps>; export { type FormProps, Form as default };