UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

15 lines (12 loc) 348 B
import * as React from 'react'; /** * @ignore - internal component. */ const FormControlContext = React.createContext(); if (process.env.NODE_ENV !== 'production') { FormControlContext.displayName = 'FormControlContext'; } export function useFormControl() { return React.useContext(FormControlContext); } export default FormControlContext;