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