Created
August 2, 2020 03:27
-
-
Save naishe/c2b552b99c649cb6918544c0f9cd6e53 to your computer and use it in GitHub Desktop.
Integrating with CodePush 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import App from './App'; | |
import codePush from 'react-native-code-push'; | |
class AppWrappedInCodePush extends Component { | |
render() { | |
return <App />; | |
} | |
} | |
export default codePush(AppWrappedInCodePush); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment