UNPKG

348 BJavaScriptView Raw
1import * as React from 'react';
2/**
3 * @ignore - internal component.
4 */
5
6const FormControlContext = React.createContext();
7
8if (process.env.NODE_ENV !== 'production') {
9 FormControlContext.displayName = 'FormControlContext';
10}
11
12export function useFormControl() {
13 return React.useContext(FormControlContext);
14}
15export default FormControlContext;
\No newline at end of file