Skip to content

Instantly share code, notes, and snippets.

@spencercarli
Created March 9, 2016 01:43
Show Gist options
  • Save spencercarli/8f1cd96bf7102f9ad876 to your computer and use it in GitHub Desktop.
Save spencercarli/8f1cd96bf7102f9ad876 to your computer and use it in GitHub Desktop.
Connecting the Meteor and React Native Apps - signIn.js
// RNApp/app/containers/signIn.js
handleDDPSignIn(googleUser) {
if (googleUser) {
ddpClient.loginWithGoogle(googleUser, (err, res) => {
if (err) {
this.setState({error: err.reason});
} else {
this.props.changedSignedIn(true);
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment