UNPKG

easy-form-handler

Version:

A powerful, lightweight React form handling library with built-in validation, customizable styling, and intuitive components.

9 lines (8 loc) 291 B
import React from "react"; declare function Form({ children, isActiveDefaultStyle, className, onSubmit, ...props }: { children: React.ReactNode; onSubmit: (data: object) => void; isActiveDefaultStyle?: boolean; className?: string; }): React.JSX.Element; export default Form;