7 lines
193 B
Plaintext
7 lines
193 B
Plaintext
'use client';
|
|
|
|
import * as React from 'react';
|
|
import FormControlContext from './FormControlContext';
|
|
export default function useFormControl() {
|
|
return React.useContext(FormControlContext);
|
|
} |