while using sentry with appcenter's codepush how to wrap the main App component like this:
export default Sentry.wrap(codePush(App));
or like this:
export default codePush(Sentry.wrap(App));
or is there any other method to execute the above task I refereed to the sentry docs but was unclear about this part https://docs.sentry.io/platforms/react-native/manual-setup/codepush/
please can someone help me