UNPKG

react-native-wishlist

Version:
10 lines 353 B
import { createContext, useContext } from 'react'; export const WishlistContext = /*#__PURE__*/createContext(null); export function useWishlistContext() { const context = useContext(WishlistContext); if (!context) { throw Error('Must be rendered inside a Template component.'); } return context; } //# sourceMappingURL=WishlistContext.js.map