mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:24:56 -06:00
16 lines
386 B
JavaScript
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();
|
|
};
|