create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
27 lines (21 loc) • 700 B
JavaScript
import * as React from 'react';
const MISSING_CONTEXT_ERROR = "Couldn't find a navigation context. Have you wrapped your app with 'NavigationContainer'? See https://reactnavigation.org/docs/getting-started for setup instructions.";
export default /*#__PURE__*/React.createContext({
isDefault: true,
get getKey() {
throw new Error(MISSING_CONTEXT_ERROR);
},
get setKey() {
throw new Error(MISSING_CONTEXT_ERROR);
},
get getState() {
throw new Error(MISSING_CONTEXT_ERROR);
},
get setState() {
throw new Error(MISSING_CONTEXT_ERROR);
},
get getIsInitial() {
throw new Error(MISSING_CONTEXT_ERROR);
}
});
//# sourceMappingURL=NavigationStateContext.js.map