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

11 lines
344 B
JavaScript

"use strict";
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