UNPKG

informed

Version:

A lightweight framework and utility for building powerful forms in React applications

11 lines (8 loc) 276 B
import { useContext } from 'react'; import { FormStateContext } from '../Context.js'; /* ----------------------- useFormState ----------------------- */ function useFormState() { var formState = useContext(FormStateContext); return formState; } export { useFormState };