aretherecookies-mobile/js/apis/GoogleAuth.js
2018-06-10 10:40:28 -05:00

16 lines
386 B
JavaScript

// @flow
// import { GoogleSignin } from 'react-native-google-signin';
export type GoogleUser = {
name: string,
email: string,
photo: string,
accessToken: string,
};
export const authGoogle = async () => {
// await GoogleSignin.configure({
// webClientId: '648700523612-5p6rpumnhcjr4635hnsg4d7cg88ue3te.apps.googleusercontent.com',
// });
// return GoogleSignin.signIn();
};