react-native-trays
Version:
Production-grade, Family inspired, React Native Tray System library
16 lines (15 loc) • 487 B
JavaScript
;
/**
* context.tsx
*
* Exports the TrayContext for tray stack management, used internally by TrayProvider and related hooks.
*/
import { createContext } from 'react';
/**
* TrayContext
*
* Internal React context for tray stack management, providing access to tray stack manipulation functions.
* Should only be accessed via the TrayProvider and useTrays hook.
*/
export const TrayContext = /*#__PURE__*/createContext(undefined);
//# sourceMappingURL=context.js.map