Files
Fluxup_PAP/node_modules/@react-navigation/native/lib/module/UnhandledLinkingContext.js
2026-03-10 16:18:05 +00:00

14 lines
480 B
JavaScript

"use strict";
import * as React from 'react';
const MISSING_CONTEXT_ERROR = "Couldn't find an UnhandledLinkingContext context.";
export const UnhandledLinkingContext = /*#__PURE__*/React.createContext({
get lastUnhandledLink() {
throw new Error(MISSING_CONTEXT_ERROR);
},
get setLastUnhandledLink() {
throw new Error(MISSING_CONTEXT_ERROR);
}
});
UnhandledLinkingContext.displayName = 'UnhandledLinkingContext';
//# sourceMappingURL=UnhandledLinkingContext.js.map