UNPKG

react-native-wishlist

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