UNPKG

wass-rct-ui

Version:

A lightweight and customizable WASS Rct UI component library for modern web applications.

9 lines (8 loc) 370 B
import * as React from "react"; export interface FormProps extends React.FormHTMLAttributes<HTMLFormElement> { className?: string; children?: React.ReactNode; onSubmit?: (event: React.FormEvent<HTMLFormElement>) => void; } declare const MemoizedForm: React.NamedExoticComponent<FormProps & React.RefAttributes<HTMLFormElement>>; export default MemoizedForm;