// @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(); };