UNPKG

react-minimalistic-use-form

Version:

Minimalistic react hook for handling forms without much pain.

5 lines (4 loc) 206 B
import React from 'react'; import { Obj, IState, Action } from './index'; export declare const getInitialState: (initialValues?: Obj) => IState; export declare const reducer: React.Reducer<IState, Action>;