@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
15 lines (13 loc) • 490 B
JavaScript
'use client';
import * as React from 'react';
import { PickersContext } from "../internals/components/PickersProvider.js";
/**
* Returns the context passed by the picker that wraps the current component.
*/
export const usePickersContext = () => {
const value = React.useContext(PickersContext);
if (value == null) {
throw new Error(['MUI X: The `usePickersContext` can only be called in fields that are used as a slot of a picker component'].join('\n'));
}
return value;
};