Attempting to port a react web project over to native I'm getting the following:
React Native Can't find variable: window"
This is most likely due to me requiring react and attempting to give it global scope with window.React = require('react-native');.
What's curious is the project runs fine if I enable debugging with chrome.
If the above is incorrect how do I set a global scope with react native ?
window. I'm wondering exact what you're trying to do here...