Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / src / new-forms / forms / FormContext.tsx
Size: Mime:
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