UNPKG

react-day-picker

Version:

Customizable Date Picker for React

17 lines 556 B
import { createContext, useContext } from "react"; /** @private */ export const dayPickerContext = createContext(undefined); /** * Return the context to work with `<DayPicker />` inside custom components. * * @group Hooks * @see https://daypicker.dev/guides/custom-components */ export function useDayPicker(props) { const context = useContext(dayPickerContext); if (context === undefined) { throw new Error("useDayPicker() must be used within a custom component."); } return context; } //# sourceMappingURL=useDayPicker.js.map