How does one debug their React code with React Native while the app is running in app simulator?
In addition to the other answers. You can debug react-native using the debugger statement
example:
debugger; //breaks execution
Your chrome dev tools must be open for this to work