@react-navigation/native
Version:
React Native integration for React Navigation
11 lines (10 loc) • 344 B
JavaScript
import * as React from 'react';
const MISSING_CONTEXT_ERROR = "Couldn't find a LinkingContext context.";
export const LinkingContext = /*#__PURE__*/React.createContext({
get options() {
throw new Error(MISSING_CONTEXT_ERROR);
}
});
LinkingContext.displayName = 'LinkingContext';
//# sourceMappingURL=LinkingContext.js.map
;