UNPKG

417 BJavaScriptView Raw
1'use client';
2
3import * as React from 'react';
4import { FormControlContext } from './FormControlContext';
5/**
6 *
7 * Demos:
8 *
9 * - [Form Control](https://mui.com/base-ui/react-form-control/#hook)
10 *
11 * API:
12 *
13 * - [useFormControlContext API](https://mui.com/base-ui/react-form-control/hooks-api/#use-form-control-context)
14 */
15export function useFormControlContext() {
16 return React.useContext(FormControlContext);
17}
\No newline at end of file