Repository URL to install this package:
|
Version:
3.5.5 ▾
|
import { createContext } from 'react'
import { FormState } from './FormState'
// export const DEFAULT_FORM_STATE = new FormState()
export const FormContext = createContext<FormState>(undefined as any)
export const { Provider, Consumer } = FormContext