Skip to content

Instantly share code, notes, and snippets.

@naishe
Created August 2, 2020 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naishe/c2b552b99c649cb6918544c0f9cd6e53 to your computer and use it in GitHub Desktop.
Save naishe/c2b552b99c649cb6918544c0f9cd6e53 to your computer and use it in GitHub Desktop.
Integrating with CodePush 1
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